forked from tursodatabase/libsql-client-py
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.cfg
More file actions
28 lines (28 loc) · 674 Bytes
/
setup.cfg
File metadata and controls
28 lines (28 loc) · 674 Bytes
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
[flake8]
show-source = true
max-line-length = 88
enable-extensions = G
# E203 is due to https://github.com/PyCQA/pycodestyle/issues/373
ignore =
A003,
D,
E203,E266,E305,E711,E712,E721,E722,E741,
N801,N802,N806,
RST304,RST303,RST299,RST399,
W503,W504
exclude =
.venv,
.git,
.tox,
dist/,
build/,
docs/conf.py,
*egg,
hrana-test-server/,
# tests/dbapi2/ are copied from stdlib test_sqlite3, should not be messed with
tests/dbapi2/*
import-order-style = google
application-import-names = libsql_client,test
per-file-ignores =
libsql_client/dbapi2/_replace_modules_pythonpath/*:E402
**/__init__.py:F401,F403