mirror of
https://github.com/TheAlgorithms/Python.git
synced 2024-11-30 16:31:08 +00:00
[pre-commit.ci] pre-commit autoupdate (#11408)
* [pre-commit.ci] pre-commit autoupdate updates: - [github.com/tox-dev/pyproject-fmt: 2.0.4 → 2.1.1](https://github.com/tox-dev/pyproject-fmt/compare/2.0.4...2.1.1) - [github.com/abravalheri/validate-pyproject: v0.17 → v0.18](https://github.com/abravalheri/validate-pyproject/compare/v0.17...v0.18) * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --------- Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
This commit is contained in:
parent
1f368da06d
commit
0139143abb
|
@ -29,7 +29,7 @@ repos:
|
||||||
- tomli
|
- tomli
|
||||||
|
|
||||||
- repo: https://github.com/tox-dev/pyproject-fmt
|
- repo: https://github.com/tox-dev/pyproject-fmt
|
||||||
rev: "2.0.4"
|
rev: "2.1.1"
|
||||||
hooks:
|
hooks:
|
||||||
- id: pyproject-fmt
|
- id: pyproject-fmt
|
||||||
|
|
||||||
|
@ -42,7 +42,7 @@ repos:
|
||||||
pass_filenames: false
|
pass_filenames: false
|
||||||
|
|
||||||
- repo: https://github.com/abravalheri/validate-pyproject
|
- repo: https://github.com/abravalheri/validate-pyproject
|
||||||
rev: v0.17
|
rev: v0.18
|
||||||
hooks:
|
hooks:
|
||||||
- id: validate-pyproject
|
- id: validate-pyproject
|
||||||
|
|
||||||
|
|
|
@ -1,21 +1,9 @@
|
||||||
[tool.ruff]
|
[tool.ruff]
|
||||||
lint.ignore = [ # `ruff rule S101` for a description of that rule
|
target-version = "py312"
|
||||||
"B904", # Within an `except` clause, raise exceptions with `raise ... from err` -- FIX ME
|
|
||||||
"B905", # `zip()` without an explicit `strict=` parameter -- FIX ME
|
output-format = "full"
|
||||||
"EM101", # Exception must not use a string literal, assign to variable first
|
lint.select = [
|
||||||
"EXE001", # Shebang is present but file is not executable -- DO NOT FIX
|
# https://beta.ruff.rs/docs/rules
|
||||||
"G004", # Logging statement uses f-string
|
|
||||||
"PLC1901", # `{}` can be simplified to `{}` as an empty string is falsey
|
|
||||||
"PLW060", # Using global for `{name}` but no assignment is done -- DO NOT FIX
|
|
||||||
"PLW2901", # PLW2901: Redefined loop variable -- FIX ME
|
|
||||||
"PT011", # `pytest.raises(Exception)` is too broad, set the `match` parameter or use a more specific exception
|
|
||||||
"PT018", # Assertion should be broken down into multiple parts
|
|
||||||
"S101", # Use of `assert` detected -- DO NOT FIX
|
|
||||||
"S311", # Standard pseudo-random generators are not suitable for cryptographic purposes -- FIX ME
|
|
||||||
"SLF001", # Private member accessed: `_Iterator` -- FIX ME
|
|
||||||
"UP038", # Use `X | Y` in `{}` call instead of `(X, Y)` -- DO NOT FIX
|
|
||||||
]
|
|
||||||
lint.select = [ # https://beta.ruff.rs/docs/rules
|
|
||||||
"A", # flake8-builtins
|
"A", # flake8-builtins
|
||||||
"ARG", # flake8-unused-arguments
|
"ARG", # flake8-unused-arguments
|
||||||
"ASYNC", # flake8-async
|
"ASYNC", # flake8-async
|
||||||
|
@ -68,54 +56,63 @@ lint.select = [ # https://beta.ruff.rs/docs/rules
|
||||||
# "TCH", # flake8-type-checking
|
# "TCH", # flake8-type-checking
|
||||||
# "TRY", # tryceratops
|
# "TRY", # tryceratops
|
||||||
]
|
]
|
||||||
output-format = "full"
|
lint.per-file-ignores."arithmetic_analysis/newton_raphson.py" = [
|
||||||
target-version = "py312"
|
|
||||||
|
|
||||||
[tool.ruff.lint.mccabe] # DO NOT INCREASE THIS VALUE
|
|
||||||
max-complexity = 17 # default: 10
|
|
||||||
|
|
||||||
[tool.ruff.lint.per-file-ignores]
|
|
||||||
"arithmetic_analysis/newton_raphson.py" = [
|
|
||||||
"PGH001",
|
"PGH001",
|
||||||
]
|
]
|
||||||
"data_structures/binary_tree/binary_search_tree_recursive.py" = [
|
lint.per-file-ignores."data_structures/binary_tree/binary_search_tree_recursive.py" = [
|
||||||
"BLE001",
|
"BLE001",
|
||||||
]
|
]
|
||||||
"data_structures/hashing/tests/test_hash_map.py" = [
|
lint.per-file-ignores."data_structures/hashing/tests/test_hash_map.py" = [
|
||||||
"BLE001",
|
"BLE001",
|
||||||
]
|
]
|
||||||
"hashes/enigma_machine.py" = [
|
lint.per-file-ignores."hashes/enigma_machine.py" = [
|
||||||
"BLE001",
|
"BLE001",
|
||||||
]
|
]
|
||||||
"machine_learning/sequential_minimum_optimization.py" = [
|
lint.per-file-ignores."machine_learning/sequential_minimum_optimization.py" = [
|
||||||
"SIM115",
|
"SIM115",
|
||||||
]
|
]
|
||||||
"matrix/sherman_morrison.py" = [
|
lint.per-file-ignores."matrix/sherman_morrison.py" = [
|
||||||
"SIM103",
|
"SIM103",
|
||||||
]
|
]
|
||||||
"other/l*u_cache.py" = [
|
lint.per-file-ignores."other/l*u_cache.py" = [
|
||||||
"RUF012",
|
"RUF012",
|
||||||
]
|
]
|
||||||
"physics/newtons_second_law_of_motion.py" = [
|
lint.per-file-ignores."physics/newtons_second_law_of_motion.py" = [
|
||||||
"BLE001",
|
"BLE001",
|
||||||
]
|
]
|
||||||
"project_euler/problem_099/sol1.py" = [
|
lint.per-file-ignores."project_euler/problem_099/sol1.py" = [
|
||||||
"SIM115",
|
"SIM115",
|
||||||
]
|
]
|
||||||
"sorts/external_sort.py" = [
|
lint.per-file-ignores."sorts/external_sort.py" = [
|
||||||
"SIM115",
|
"SIM115",
|
||||||
]
|
]
|
||||||
|
lint.mccabe.max-complexity = 17 # default: 10
|
||||||
[tool.ruff.lint.pylint] # DO NOT INCREASE THESE VALUES
|
lint.pylint.allow-magic-value-types = [
|
||||||
allow-magic-value-types = [
|
|
||||||
"float",
|
"float",
|
||||||
"int",
|
"int",
|
||||||
"str",
|
"str",
|
||||||
]
|
]
|
||||||
max-args = 10 # default: 5
|
lint.pylint.max-args = 10 # default: 5
|
||||||
max-branches = 20 # default: 12
|
lint.pylint.max-branches = 20 # default: 12
|
||||||
max-returns = 8 # default: 6
|
lint.pylint.max-returns = 8 # default: 6
|
||||||
max-statements = 88 # default: 50
|
lint.pylint.max-statements = 88 # default: 50
|
||||||
|
lint.ignore = [
|
||||||
|
# `ruff rule S101` for a description of that rule
|
||||||
|
"B904", # Within an `except` clause, raise exceptions with `raise ... from err` -- FIX ME
|
||||||
|
"B905", # `zip()` without an explicit `strict=` parameter -- FIX ME
|
||||||
|
"EM101", # Exception must not use a string literal, assign to variable first
|
||||||
|
"EXE001", # Shebang is present but file is not executable -- DO NOT FIX
|
||||||
|
"G004", # Logging statement uses f-string
|
||||||
|
"PLC1901", # `{}` can be simplified to `{}` as an empty string is falsey
|
||||||
|
"PLW060", # Using global for `{name}` but no assignment is done -- DO NOT FIX
|
||||||
|
"PLW2901", # PLW2901: Redefined loop variable -- FIX ME
|
||||||
|
"PT011", # `pytest.raises(Exception)` is too broad, set the `match` parameter or use a more specific exception
|
||||||
|
"PT018", # Assertion should be broken down into multiple parts
|
||||||
|
"S101", # Use of `assert` detected -- DO NOT FIX
|
||||||
|
"S311", # Standard pseudo-random generators are not suitable for cryptographic purposes -- FIX ME
|
||||||
|
"SLF001", # Private member accessed: `_Iterator` -- FIX ME
|
||||||
|
"UP038", # Use `X | Y` in `{}` call instead of `(X, Y)` -- DO NOT FIX
|
||||||
|
]
|
||||||
|
|
||||||
[tool.codespell]
|
[tool.codespell]
|
||||||
ignore-words-list = "3rt,ans,bitap,crate,damon,fo,followings,hist,iff,kwanza,manuel,mater,secant,som,sur,tim,toi,zar"
|
ignore-words-list = "3rt,ans,bitap,crate,damon,fo,followings,hist,iff,kwanza,manuel,mater,secant,som,sur,tim,toi,zar"
|
||||||
|
|
Loading…
Reference in New Issue
Block a user