mirror of
https://github.com/TheAlgorithms/Python.git
synced 2025-02-24 18:08:39 +00:00
Compare commits
2 Commits
ea6c6056cf
...
07e6812888
Author | SHA1 | Date | |
---|---|---|---|
|
07e6812888 | ||
|
0dee4a402c |
@ -26,14 +26,14 @@ repos:
|
|||||||
- id: black
|
- id: black
|
||||||
|
|
||||||
- repo: https://github.com/codespell-project/codespell
|
- repo: https://github.com/codespell-project/codespell
|
||||||
rev: v2.2.4
|
rev: v2.2.5
|
||||||
hooks:
|
hooks:
|
||||||
- id: codespell
|
- id: codespell
|
||||||
additional_dependencies:
|
additional_dependencies:
|
||||||
- tomli
|
- tomli
|
||||||
|
|
||||||
- repo: https://github.com/tox-dev/pyproject-fmt
|
- repo: https://github.com/tox-dev/pyproject-fmt
|
||||||
rev: "0.11.2"
|
rev: "0.12.0"
|
||||||
hooks:
|
hooks:
|
||||||
- id: pyproject-fmt
|
- id: pyproject-fmt
|
||||||
|
|
||||||
|
@ -486,6 +486,9 @@
|
|||||||
* [Test Linear Algebra](linear_algebra/src/test_linear_algebra.py)
|
* [Test Linear Algebra](linear_algebra/src/test_linear_algebra.py)
|
||||||
* [Transformations 2D](linear_algebra/src/transformations_2d.py)
|
* [Transformations 2D](linear_algebra/src/transformations_2d.py)
|
||||||
|
|
||||||
|
## Linear Programming
|
||||||
|
* [Simplex](linear_programming/simplex.py)
|
||||||
|
|
||||||
## Machine Learning
|
## Machine Learning
|
||||||
* [Astar](machine_learning/astar.py)
|
* [Astar](machine_learning/astar.py)
|
||||||
* [Data Transformations](machine_learning/data_transformations.py)
|
* [Data Transformations](machine_learning/data_transformations.py)
|
||||||
|
@ -1,21 +1,3 @@
|
|||||||
[tool.pytest.ini_options]
|
|
||||||
markers = [
|
|
||||||
"mat_ops: mark a test as utilizing matrix operations.",
|
|
||||||
]
|
|
||||||
addopts = [
|
|
||||||
"--durations=10",
|
|
||||||
"--doctest-modules",
|
|
||||||
"--showlocals",
|
|
||||||
]
|
|
||||||
|
|
||||||
[tool.coverage.report]
|
|
||||||
omit = [".env/*"]
|
|
||||||
sort = "Cover"
|
|
||||||
|
|
||||||
[tool.codespell]
|
|
||||||
ignore-words-list = "3rt,ans,crate,damon,fo,followings,hist,iff,kwanza,mater,secant,som,sur,tim,zar"
|
|
||||||
skip = "./.*,*.json,ciphers/prehistoric_men.txt,project_euler/problem_022/p022_names.txt,pyproject.toml,strings/dictionary.txt,strings/words.txt"
|
|
||||||
|
|
||||||
[tool.ruff]
|
[tool.ruff]
|
||||||
ignore = [ # `ruff rule S101` for a description of that rule
|
ignore = [ # `ruff rule S101` for a description of that rule
|
||||||
"ARG001", # Unused function argument `amount` -- FIX ME?
|
"ARG001", # Unused function argument `amount` -- FIX ME?
|
||||||
@ -131,3 +113,21 @@ max-args = 10 # default: 5
|
|||||||
max-branches = 20 # default: 12
|
max-branches = 20 # default: 12
|
||||||
max-returns = 8 # default: 6
|
max-returns = 8 # default: 6
|
||||||
max-statements = 88 # default: 50
|
max-statements = 88 # default: 50
|
||||||
|
|
||||||
|
[tool.pytest.ini_options]
|
||||||
|
markers = [
|
||||||
|
"mat_ops: mark a test as utilizing matrix operations.",
|
||||||
|
]
|
||||||
|
addopts = [
|
||||||
|
"--durations=10",
|
||||||
|
"--doctest-modules",
|
||||||
|
"--showlocals",
|
||||||
|
]
|
||||||
|
|
||||||
|
[tool.coverage.report]
|
||||||
|
omit = [".env/*"]
|
||||||
|
sort = "Cover"
|
||||||
|
|
||||||
|
[tool.codespell]
|
||||||
|
ignore-words-list = "3rt,ans,crate,damon,fo,followings,hist,iff,kwanza,mater,secant,som,sur,tim,zar"
|
||||||
|
skip = "./.*,*.json,ciphers/prehistoric_men.txt,project_euler/problem_022/p022_names.txt,pyproject.toml,strings/dictionary.txt,strings/words.txt"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user