forked from kch3782/gdsfactory
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.pre-commit-config.yaml
143 lines (134 loc) · 4.57 KB
/
.pre-commit-config.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: 5191f112dfd133e97acba8c2162c37d8613cf54b
hooks:
- id: check-yaml
exclude: ^(conda\.recipe/meta\.yaml|conda_build/templates/.*\.yaml|docs/click/meta\.yaml|conda/meta\.yaml|conda/construct.yaml|.*\.pic\.yml)
- id: end-of-file-fixer
- id: trailing-whitespace
# - id: requirements-txt-fixer
# - repo: https://github.com/hakancelikdev/unimport
# rev: 33ead41ee30f1d323a9c2fcfd0114297efbbc4d5
# hooks:
# - id: unimport
# args: [--remove, --include-star-import]
# - repo: https://github.com/pycqa/isort
# rev: 03a9949368bc8ce115a8ff9ce7f4904def9df721
# hooks:
# - id: isort
# files: gdsfactory/.*
# args: [--profile, black, --filter-files]
- repo: https://github.com/psf/black
rev: 23.1.0
hooks:
- id: black
# - repo: https://github.com/mwouts/jupytext
# rev: v1.14.4 # CURRENT_TAG/COMMIT_HASH
# hooks:
# - id: jupytext
# args: [--sync]
# - repo: https://github.com/omnilib/ufmt
# rev: v2.0.0b1
# hooks:
# - id: ufmt
- repo: https://github.com/asottile/blacken-docs
rev: acb5bdec097a7c332f30d1f85dde4d93df62c979
hooks:
- id: blacken-docs
additional_dependencies: [black==23.1.0]
# - repo: https://github.com/pycqa/flake8
# rev: 33e1c55853fbcc454a2343b9b61a0e715a2f74a4
# hooks:
# - id: flake8
# entry: pflake8
# additional_dependencies: [flake8-docstrings, pyproject-flake8]
# - repo: https://github.com/kynan/nbstripout
# rev: e4c5b4dcbab4afa0b88b7a9243db42b1a8d95dde
# hooks:
# - id: nbstripout
# files: .ipynb
# - repo: https://github.com/asottile/pyupgrade
# rev: 97ed6fb3cf2e650d4f762ba231c3f04c41797710
# hooks:
# - id: pyupgrade
# args: [--py37-plus, --keep-runtime-typing]
- repo: https://github.com/codespell-project/codespell
rev: ea349a2ab846ace712f81b50825942935805d531
hooks:
- id: codespell
args: ["-L TE,TE/TM,te,ba,FPR,fpr_spacing,ro,nd,donot,schem"]
additional_dependencies:
- tomli
# - repo: https://github.com/shellcheck-py/shellcheck-py
# rev: 98854f809ca9d0e235c0bd5c0ad5e986e02120a4
# hooks:
# - id: shellcheck
# - repo: https://github.com/pre-commit/pygrep-hooks
# rev: v1.10.0 # Use the ref you want to point at
# hooks:
# - id: python-use-type-annotations
# - repo: https://github.com/PyCQA/bandit
# rev: 91c4d979550888c8d190898279bfdb0af732791e
# hooks:
# - id: bandit
# args: [--exit-zero]
# ignore all tests, not just tests data
exclude: ^tests/
# - repo: https://github.com/PyCQA/pylint
# rev: v2.14.1
# hooks:
# - id: pylint
# args: [--exit-zero]
# - repo: https://github.com/macisamuele/language-formatters-pre-commit-hooks
# rev: 6565d773ca281682d7062d4c0be74538cc474cc9
# hooks:
# - id: pretty-format-java
# args: [--autofix]
# - id: pretty-format-kotlin
# args: [--autofix]
# - id: pretty-format-yaml
# args: [--autofix, --indent, "2"]
# - repo: https://github.com/adrienverge/yamllint.git
# rev: v1.21.0 # or higher tag
# hooks:
# - id: yamllint
# args: [--format, parsable, --strict]
# - repo: https://github.com/jumanjihouse/pre-commit-hook-yamlfmt
# rev: 0.1.0 # or specific tag
# hooks:
# - id: yamlfmt
# - repo: https://github.com/pre-commit/mirrors-mypy
# rev: "214c33306afe17f1cc7d2d55e4da705b6ebe0627"
# hooks:
# - id: mypy
# exclude: ^(docs/|example-plugin/|tests/fixtures)
# additional_dependencies:
# - "pydantic"
# - repo: https://github.com/terrencepreilly/darglint
# rev: master
# hooks:
# - id: darglint
#
# - repo: https://github.com/pycqa/pydocstyle
# rev: "6.2.2"
# hooks:
# - id: pydocstyle
# additional_dependencies: ["pydocstyle[toml]"]
# - repo: https://github.com/asottile/reorder_python_imports
# rev: 2b2f0c74acdb3de316e23ceb7dd0d7945c354050
# hooks:
# - id: reorder-python-imports
# - repo: https://github.com/nbQA-dev/nbQA
# rev: 3e5186603806260939b5f1b0372c058203c65553
# hooks:
# - id: nbqa-black
# additional_dependencies: [jupytext, black] # optional, only if you're using Jupytext
# - id: nbqa-pyupgrade
# args: ["--py37-plus"]
# - id: nbqa-flake8
# - id: nbqa-isort
# args: ["--float-to-top"]
- repo: https://github.com/charliermarsh/ruff-pre-commit
rev: "v0.0.242"
hooks:
- id: ruff