Spaces:
Configuration error
Configuration error
Update
Browse files- .pre-commit-config.yaml +4 -4
- .vscode/settings.json +9 -4
.pre-commit-config.yaml
CHANGED
|
@@ -19,19 +19,19 @@ repos:
|
|
| 19 |
- id: docformatter
|
| 20 |
args: ["--in-place"]
|
| 21 |
- repo: https://github.com/pycqa/isort
|
| 22 |
-
rev: 5.
|
| 23 |
hooks:
|
| 24 |
- id: isort
|
| 25 |
args: ["--profile", "black"]
|
| 26 |
- repo: https://github.com/pre-commit/mirrors-mypy
|
| 27 |
-
rev: v1.
|
| 28 |
hooks:
|
| 29 |
- id: mypy
|
| 30 |
args: ["--ignore-missing-imports"]
|
| 31 |
additional_dependencies:
|
| 32 |
["types-python-slugify", "types-requests", "types-PyYAML"]
|
| 33 |
- repo: https://github.com/psf/black
|
| 34 |
-
rev: 23.
|
| 35 |
hooks:
|
| 36 |
- id: black
|
| 37 |
language_version: python3.10
|
|
@@ -46,7 +46,7 @@ repos:
|
|
| 46 |
"metadata.interpreter metadata.kernelspec cell.metadata.pycharm",
|
| 47 |
]
|
| 48 |
- repo: https://github.com/nbQA-dev/nbQA
|
| 49 |
-
rev: 1.7.
|
| 50 |
hooks:
|
| 51 |
- id: nbqa-black
|
| 52 |
- id: nbqa-pyupgrade
|
|
|
|
| 19 |
- id: docformatter
|
| 20 |
args: ["--in-place"]
|
| 21 |
- repo: https://github.com/pycqa/isort
|
| 22 |
+
rev: 5.13.1
|
| 23 |
hooks:
|
| 24 |
- id: isort
|
| 25 |
args: ["--profile", "black"]
|
| 26 |
- repo: https://github.com/pre-commit/mirrors-mypy
|
| 27 |
+
rev: v1.7.1
|
| 28 |
hooks:
|
| 29 |
- id: mypy
|
| 30 |
args: ["--ignore-missing-imports"]
|
| 31 |
additional_dependencies:
|
| 32 |
["types-python-slugify", "types-requests", "types-PyYAML"]
|
| 33 |
- repo: https://github.com/psf/black
|
| 34 |
+
rev: 23.11.0
|
| 35 |
hooks:
|
| 36 |
- id: black
|
| 37 |
language_version: python3.10
|
|
|
|
| 46 |
"metadata.interpreter metadata.kernelspec cell.metadata.pycharm",
|
| 47 |
]
|
| 48 |
- repo: https://github.com/nbQA-dev/nbQA
|
| 49 |
+
rev: 1.7.1
|
| 50 |
hooks:
|
| 51 |
- id: nbqa-black
|
| 52 |
- id: nbqa-pyupgrade
|
.vscode/settings.json
CHANGED
|
@@ -1,11 +1,16 @@
|
|
| 1 |
{
|
|
|
|
|
|
|
| 2 |
"[python]": {
|
| 3 |
"editor.defaultFormatter": "ms-python.black-formatter",
|
| 4 |
"editor.formatOnType": true,
|
| 5 |
"editor.codeActionsOnSave": {
|
| 6 |
-
"source.organizeImports":
|
| 7 |
}
|
| 8 |
},
|
|
|
|
|
|
|
|
|
|
| 9 |
"black-formatter.args": [
|
| 10 |
"--line-length=119"
|
| 11 |
],
|
|
@@ -13,9 +18,9 @@
|
|
| 13 |
"flake8.args": [
|
| 14 |
"--max-line-length=119"
|
| 15 |
],
|
| 16 |
-
"ruff.args": [
|
| 17 |
"--line-length=119"
|
| 18 |
],
|
| 19 |
-
"
|
| 20 |
-
"
|
| 21 |
}
|
|
|
|
| 1 |
{
|
| 2 |
+
"editor.formatOnSave": true,
|
| 3 |
+
"files.insertFinalNewline": false,
|
| 4 |
"[python]": {
|
| 5 |
"editor.defaultFormatter": "ms-python.black-formatter",
|
| 6 |
"editor.formatOnType": true,
|
| 7 |
"editor.codeActionsOnSave": {
|
| 8 |
+
"source.organizeImports": "explicit"
|
| 9 |
}
|
| 10 |
},
|
| 11 |
+
"[jupyter]": {
|
| 12 |
+
"files.insertFinalNewline": false
|
| 13 |
+
},
|
| 14 |
"black-formatter.args": [
|
| 15 |
"--line-length=119"
|
| 16 |
],
|
|
|
|
| 18 |
"flake8.args": [
|
| 19 |
"--max-line-length=119"
|
| 20 |
],
|
| 21 |
+
"ruff.lint.args": [
|
| 22 |
"--line-length=119"
|
| 23 |
],
|
| 24 |
+
"notebook.output.scrolling": true,
|
| 25 |
+
"notebook.formatOnCellExecution": true
|
| 26 |
}
|