Implement `GetSConsVersion` static method
[scons.git] / .flake8
blobd10d72d2ab2f4866573f9cb3f7308b5104e749c6
1 [flake8]
2 show-source = True
3 # don't complain about work black has done
4 max-line-length = 88
5 extend-exclude =
6     bin,
7     bench,
8     doc,
9     src,
10     template,
11     testing,
12     test,
13     timings,
14     SCons/Tool/docbook/docbook-xsl-1.76.1,
15     bootstrap.py,
16     runtest.py
17 extend-ignore = 
18     E302,
19     E305
20 per-file-ignores =
21     # module symbols made available for compat - ignore "unused" warns
22     SCons/Util/__init__.py: F401