-
Notifications
You must be signed in to change notification settings - Fork 4
Chore: ruff, prek #88
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
13874c9
chore: Update bandit prek and ruff
pierrepo 1aab739
chore: Reorganize Ruff rules in alpha order
pierrepo b8531b0
Add Pylint rules
pierrepo 2ee4c70
chore: Disable Pylint recommandations
pierrepo 3c7701c
chore: Add typos in pre-commit / prek hooks
pierrepo c333800
chore: Add pre-commit prek hooks for YAML, Markdown and Bash scripts
pierrepo File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,10 @@ | ||
| --- | ||
| # Example file: | ||
| # https://github.com/DavidAnson/markdownlint/blob/main/schema/.markdownlint.yaml | ||
| # MD013/line-length : Line length | ||
| # https://github.com/DavidAnson/markdownlint/blob/v0.40.0/doc/md013.md | ||
| MD013: | ||
| # Number of characters | ||
| line_length: 200 | ||
| # Exclude citations | ||
| blockquotes: false |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,53 +1,85 @@ | ||
| --- | ||
| # Install pre-commit hooks with: | ||
| # uv run prek install | ||
| # Update hooks: | ||
| # uv run prek auto-update | ||
| exclude: "scripts/*|tmp/*" | ||
| repos: | ||
|
|
||
| - repo: https://github.com/pre-commit/pre-commit-hooks | ||
| # Out-of-the-box hooks for pre-commit. | ||
| rev: v6.0.0 | ||
| hooks: | ||
| # Makes sure files end in a newline and only a newline. | ||
| - id: end-of-file-fixer | ||
| # Replaces or checks mixed line ending. | ||
| - id: mixed-line-ending | ||
| # Trims trailing whitespace. | ||
| - id: trailing-whitespace | ||
| # Attempts to load all json files to verify syntax. | ||
| - id: check-json | ||
| # Attempts to load all yaml files to verify syntax. | ||
| - id: check-yaml | ||
| # Attempts to load all TOML files to verify syntax. | ||
| - id: check-toml | ||
| # Prevent giant files from being committed. | ||
| - id: check-added-large-files | ||
| # Set max file size to 500 KB. | ||
| args: ["--maxkb=500"] | ||
|
|
||
| - repo: https://github.com/asottile/pyupgrade | ||
| # Automatically upgrade syntax for newer versions of the Python language. | ||
| rev: v3.21.2 | ||
| hooks: | ||
| - id: pyupgrade | ||
|
|
||
| - repo: https://github.com/astral-sh/ruff-pre-commit | ||
| # Linter and formatter for Python code. | ||
| rev: v0.14.14 | ||
| hooks: | ||
| # Run the linter. | ||
| # Automatically fix issues where possible. | ||
| - id: ruff-check | ||
| types: [python] | ||
| args: [ --fix ] | ||
| # Run the formatter. | ||
| - id: ruff-format | ||
| types: [python] | ||
|
|
||
| - repo: https://github.com/PyCQA/bandit | ||
| # Security linter for Python code. | ||
| rev: 1.9.3 | ||
| hooks: | ||
| - id: bandit | ||
| args: ["--exclude", "tests"] | ||
| - repo: https://github.com/pre-commit/pre-commit-hooks | ||
| # Out-of-the-box hooks for pre-commit. | ||
| rev: v6.0.0 | ||
| hooks: | ||
| # Makes sure files end in a newline and only a newline. | ||
| - id: end-of-file-fixer | ||
| # Replaces or checks mixed line ending. | ||
| - id: mixed-line-ending | ||
| # Trims trailing whitespace. | ||
| - id: trailing-whitespace | ||
| # Attempts to load all json files to verify syntax. | ||
| - id: check-json | ||
| # Attempts to load all yaml files to verify syntax. | ||
| - id: check-yaml | ||
| # Attempts to load all TOML files to verify syntax. | ||
| - id: check-toml | ||
| # Prevent giant files from being committed. | ||
| - id: check-added-large-files | ||
| # Set max file size to 500 KB. | ||
| args: ["--maxkb=500"] | ||
|
|
||
| - repo: https://github.com/asottile/pyupgrade | ||
| # Automatically upgrade syntax for newer versions of the Python language. | ||
| rev: v3.21.2 | ||
| hooks: | ||
| - id: pyupgrade | ||
|
|
||
| - repo: https://github.com/astral-sh/ruff-pre-commit | ||
| # Linter and formatter for Python code. | ||
| rev: v0.15.1 | ||
| hooks: | ||
| # Run the linter. | ||
| # Automatically fix issues where possible. | ||
| - id: ruff-check | ||
| types: [python] | ||
| args: [--fix] | ||
| # Run the formatter. | ||
| - id: ruff-format | ||
| types: [python] | ||
|
|
||
| - repo: https://github.com/PyCQA/bandit | ||
| # Security linter for Python code. | ||
| rev: 1.9.3 | ||
| hooks: | ||
| - id: bandit | ||
| args: ["--exclude", "tests"] | ||
|
|
||
| - repo: https://github.com/crate-ci/typos | ||
| # Source code spell checker | ||
| rev: v1.43.4 | ||
| hooks: | ||
| - id: typos | ||
|
|
||
| - repo: https://github.com/owenlamont/uv-secure | ||
| # Scan your uv.lock file for dependencies with known vulnerabilities | ||
| rev: 0.15.4 | ||
| hooks: | ||
| - id: uv-secure | ||
|
|
||
| # YAML | ||
| - repo: https://github.com/adrienverge/yamllint | ||
| rev: v1.38.0 | ||
| hooks: | ||
| - id: yamllint | ||
|
|
||
| # Markdown | ||
| - repo: https://github.com/igorshubovych/markdownlint-cli | ||
| rev: v0.47.0 | ||
| hooks: | ||
| - id: markdownlint | ||
| args: ['--fix'] | ||
|
|
||
| # Shell | ||
| - repo: https://github.com/shellcheck-py/shellcheck-py | ||
| rev: v0.11.0.1 | ||
| hooks: | ||
| - id: shellcheck |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The configuration enables "PL" (Pylint rules) on line 33 but then ignores "PLR" (Pylint recommendations) on line 45. This is contradictory because "PLR" is a subset of "PL". Either remove "PL" from the extended select list, or remove "PLR" from the ignore list to maintain consistency.