forked from firebase/firebase-ios-sdk
- Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtox.ini
22 lines (19 loc) · 586 Bytes
/
tox.ini
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
[pycodestyle]
# Several checks are disabled because they're incompatible with Google python
# style.
#
# See https://pycodestyle.readthedocs.io/en/latest/intro.html#error-codes for
# more details.
ignore =
# Google python style indents by two, not four. This trips a number of
# rules:
E111,E114,E129,
# W504 enforces that line breaks are after binary operators.
# W503 enforces the opposite. Disable it.
W503
max-line-length=80
[flake8]
# Same list as above
ignore = E111,E114,E129,W503
max-line-length=80
exclude = .git,.idea,__pycache__,scripts/cpplint.py