forked from mathiasbynens/dotfiles
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.flake8
52 lines (52 loc) · 827 Bytes
/
.flake8
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
[flake8]
inline-quotes = "
max-complexity = 10
max-line-length = 120
application-import-names=app,config,test
import-order-style=pycharm
ignore =
# Line break occurred before a binary operator
W503,
# error suffix in exception names
N818,
exclude =
# Directories to be ignored
.github,
.git,
.idea,
.nyc_output,
.sass-cache,
__pycache__,
.pytest_cache,
coverage,
docs,
env,
node_modules,
packer,
resources,
xunit_results,
tray,
# File types to be ignored
*.css,
*.html,
*.in,
*.ini,
*.js,
*.json,
*.md,
*.pyc,
*.rdb,
*.sh,
*.sql,
*.txt,
*.xml,
*.yml,
*.zip,
# Files to ignore
.babelrc,
.eslintrc
.flake8,
.gitignore,
.nvmrc,
.stylelintrc,
Dockerfile,