-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
36 lines (32 loc) · 1019 Bytes
/
pyproject.toml
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
[tool.black]
extend-exclude = '''
^.*/(migrations|autogen|SQLLexer.py|SQLParser.py|SQLParserVisitor.py|SQLParserListener.py)$
'''
[tool.isort]
profile = "black"
atomic = true
force_sort_within_sections = true
multi_line_output = 3
known_first_party = [
"jasmine",
"jasmine.etl",
"jasmine.models",
"jasmine.sql",
"jasmine.webserver",
]
skip = [
"jasmine-models/migrations",
"jasmine-sql/jasmine/sql/parser/autogen",
"jasmine-sql/jasmine/sql/parser/SQLLexer.py",
"jasmine-sql/jasmine/sql/parser/SQLParser.py",
"jasmine-sql/jasmine/sql/parser/SQLParserVisitor.py",
"jasmine-sql/jasmine/sql/parser/SQLParserListener.py",
]
[tool.mypy]
files = "jasmine-sql/jasmine/,jasmine-webserver/jasmine,jasmine-etl/jasmine/"
ignore_missing_imports = true
exclude = "migrations,autogen,SQLLexer.py,SQLParser.py,SQLParserVisitor.py,SQLParserListener.py"
[tool.pytest.ini_options]
addopts = "--doctest-modules"
doctest_optionflags = "ELLIPSIS"
filterwarnings = "ignore::DeprecationWarning"