We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 80019f7 commit 9cf1692Copy full SHA for 9cf1692
.stickler.yml
@@ -0,0 +1,13 @@
1
+linters:
2
+ flake8:
3
+ python: 3
4
+ black:
5
+ config: ./pyproject.toml
6
+ fixer: true:
7
+
8
+files:
9
+ ignore:
10
+ - 'src/generated/*'
11
12
+fixers:
13
+ enable: true
pyproject.toml
@@ -0,0 +1,18 @@
+[tool.black]
+line-length = 88
+target-version = ['py36', 'py37', 'py38']
+include = '\.pyi?$'
+exclude = '''
+/(
+ \.eggs
+ | \.git
+ | \.hg
+ | \.mypy_cache
+ | \.tox
+ | \.venv
+ | _build
14
+ | buck-out
15
+ | build
16
+ | dist
17
+)/
18
+'''
0 commit comments