forked from Project-PLATEAU/Auto-Create-bldg-lod2-tool
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
45 lines (44 loc) · 1.08 KB
/
setup.cfg
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
[flake8]
ignore =
# line break before binary operator (W503)
W503,
# line break after binary operator (W504)
W504,
# E111 indentation 4 以外も許容
E111,
# E114 indentation 4 以外も許容
E114,
# continuation line over-indented for hanging indent
E126,
# E221 a = 10 # hogehoge みたいなコメントを許容
E221,
# E402 import がトップにないのを許容
E402,
# E501 line 80文字以上許容
E501,
# E701 if hogehoge: return True みたいのを許容
E701,
max-line-length = 120
indent-size = 2
[autopep8]
ignore =
# line break before binary operator (W503)
W503,
# line break after binary operator (W504)
W504,
# E111 indentation 4 以外も許容
E111,
# E114 indentation 4 以外も許容
E114,
# continuation line over-indented for hanging indent
E126,
# E221 a = 10 # hogehoge みたいなコメントを許容
E221,
# E402 import がトップにないのを許容
E402,
# E501 line 80文字以上許容
E501,
# E701 if hogehoge: return True みたいのを許容
E701,
max-line-length = 120
indent-size = 2