|
1 |
| ---- |
| 1 | +default_language_version: |
| 2 | + python: python3 |
| 3 | + |
2 | 4 | repos:
|
3 | 5 | - repo: https://github.com/pre-commit/pre-commit-hooks
|
4 |
| - rev: v2.3.0 |
5 |
| - hooks: |
6 |
| - - id: check-merge-conflict |
7 |
| - - id: end-of-file-fixer |
8 |
| - - id: trailing-whitespace |
9 |
| - - repo: https://github.com/python/black |
10 |
| - rev: 22.6.0 |
| 6 | + rev: v4.4.0 |
11 | 7 | hooks:
|
12 |
| - - id: black |
13 |
| - args: ["--line-length=100"] |
14 |
| - - repo: https://github.com/codespell-project/codespell |
15 |
| - rev: v2.1.0 |
| 8 | + # list of supported hooks: https://pre-commit.com/hooks.html |
| 9 | + - id: trailing-whitespace |
| 10 | + require_serial: true |
| 11 | + - id: end-of-file-fixer |
| 12 | + require_serial: true |
| 13 | + # - id: check-docstring-first |
| 14 | + - id: check-yaml |
| 15 | + require_serial: true |
| 16 | + - id: debug-statements |
| 17 | + require_serial: true |
| 18 | + - id: detect-private-key |
| 19 | + require_serial: true |
| 20 | + - id: check-executables-have-shebangs |
| 21 | + require_serial: true |
| 22 | + - id: check-toml |
| 23 | + require_serial: true |
| 24 | + - id: check-case-conflict |
| 25 | + require_serial: true |
| 26 | + - id: check-added-large-files |
| 27 | + require_serial: true |
| 28 | + |
| 29 | + - repo: https://github.com/charliermarsh/ruff-pre-commit |
| 30 | + # Ruff version. |
| 31 | + rev: 'v0.0.261' |
16 | 32 | hooks:
|
17 |
| - - id: codespell |
18 |
| - args: ["--ignore-words-list=hist,wont"] |
19 |
| - - repo: https://github.com/pycqa/flake8 |
20 |
| - rev: 3.9.2 |
| 33 | + - id: ruff |
| 34 | + args: ['--line-length', '99', '--fix'] |
| 35 | + require_serial: true |
| 36 | + |
| 37 | + # python code formatting |
| 38 | + - repo: https://github.com/psf/black |
| 39 | + rev: 22.12.0 |
21 | 40 | hooks:
|
22 |
| - - id: flake8 |
23 |
| - args: |
24 |
| - - --max-complexity=30 |
25 |
| - - --max-line-length=100 |
26 |
| - - --show-source |
27 |
| - - --statistics |
28 |
| - - repo: https://github.com/PyCQA/isort |
29 |
| - rev: 5.10.1 |
| 41 | + - id: black |
| 42 | + args: [--line-length, "99"] |
| 43 | + require_serial: true |
| 44 | + |
| 45 | + # python docstring formatting |
| 46 | + - repo: https://github.com/myint/docformatter |
| 47 | + rev: v1.5.1 |
30 | 48 | hooks:
|
31 |
| - - id: isort |
32 |
| - args: ["--profile", "black"] |
33 |
| - - repo: https://github.com/asottile/pyupgrade |
34 |
| - rev: v2.34.0 |
| 49 | + - id: docformatter |
| 50 | + args: [--in-place, --wrap-summaries=99, --wrap-descriptions=99] |
| 51 | + require_serial: true |
| 52 | + |
| 53 | + # NOTE: Disabling this, since I'm having the glib-c2.29 weird bug. |
| 54 | + # # yaml formatting |
| 55 | + # - repo: https://github.com/pre-commit/mirrors-prettier |
| 56 | + # rev: v2.7.1 |
| 57 | + # hooks: |
| 58 | + # - id: prettier |
| 59 | + # types: [yaml] |
| 60 | + |
| 61 | + # jupyter notebook cell output clearing |
| 62 | + - repo: https://github.com/kynan/nbstripout |
| 63 | + rev: 0.6.1 |
35 | 64 | hooks:
|
36 |
| - - id: pyupgrade |
37 |
| - args: ["--py37-plus"] |
38 |
| - - repo: https://github.com/PyCQA/autoflake |
39 |
| - rev: v1.4 |
| 65 | + - id: nbstripout |
| 66 | + require_serial: true |
| 67 | + |
| 68 | + |
| 69 | + # md formatting |
| 70 | + - repo: https://github.com/executablebooks/mdformat |
| 71 | + rev: 0.7.16 |
40 | 72 | hooks:
|
41 |
| - - id: autoflake |
42 |
| - args: ["--in-place", "--expand-star-imports", "--remove-all-unused-imports", "--ignore-init-module-imports"] |
| 73 | + - id: mdformat |
| 74 | + args: ["--number"] |
| 75 | + additional_dependencies: |
| 76 | + - mdformat-gfm |
| 77 | + - mdformat-tables |
| 78 | + - mdformat_frontmatter |
| 79 | + # - mdformat-toc |
| 80 | + # - mdformat-black |
| 81 | + require_serial: true |
43 | 82 |
|
44 |
| - # BUG: Appears not to not always work properly! Enable locally if you want, but the CI will use |
45 |
| - # the tox variant for now. |
46 |
| - # - repo: https://github.com/PyCQA/doc8 |
47 |
| - # rev: 0.8.1 |
48 |
| - # hooks: |
49 |
| - # - id: doc8 |
50 |
| - # args: ["--max-line-length=100", "--file-encoding=utf-8"] |
| 83 | + |
| 84 | + # word spelling linter |
| 85 | + - repo: https://github.com/codespell-project/codespell |
| 86 | + rev: v2.2.2 |
| 87 | + hooks: |
| 88 | + - id: codespell |
| 89 | + args: |
| 90 | + - --skip=logs/**,data/** |
| 91 | + # - --ignore-words-list=abc,def |
| 92 | + require_serial: true |
0 commit comments