Welcome to mirror list, hosted at ThFree Co, Russian Federation.

setup.cfg « scripts « coreclr « src - github.com/dotnet/runtime.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ac255d84052efa4cda71ca5ffca9066179aadc05 (plain)
1
2
3
4
5
6
7
8
9
10
# Configuration options for pycodestyle

[pycodestyle]
count = False
# E722: do not use bare 'except'
# E127: continuation line over-indented for visual indent
# W503: line break before binary operator
ignore = E127,E201,E202,E266,E501,E722,W503
max-line-length = 160
statistics = False