mirror of
https://github.com/pybind/pybind11.git
synced 2024-11-11 08:03:55 +00:00
bad1740213
A flake8 configuration is included in setup.cfg and the checks are executed automatically on Travis: * Ensures a consistent PEP8 code style * Does basic linting to prevent possible bugs
12 lines
247 B
INI
12 lines
247 B
INI
[bdist_wheel]
|
|
universal=1
|
|
|
|
[flake8]
|
|
show_source = True
|
|
exclude = .git, __pycache__, build, dist, docs, tools, venv
|
|
ignore =
|
|
# line too long
|
|
E501,
|
|
# required for pretty matrix formating: multiple spaces after `,` and `[`
|
|
E201, E241
|