samba/setup.cfg

9 lines
233 B
INI
Raw Normal View History

2022-05-14 02:50:39 +08:00
[pycodestyle]
# refer to: https://pep8.readthedocs.io/en/1.4.6/intro.html#error-codes
2023-03-29 13:49:35 +08:00
# E402: module level import not at top of file
# W503: line break before binary operator
#
ignore = E402,W503
2022-05-14 02:50:39 +08:00
show-source = true
statistics = true