diff options
Diffstat (limited to 'ext/pybind11/setup.cfg')
-rw-r--r-- | ext/pybind11/setup.cfg | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/ext/pybind11/setup.cfg b/ext/pybind11/setup.cfg index 9e5e88d82..002f38d10 100644 --- a/ext/pybind11/setup.cfg +++ b/ext/pybind11/setup.cfg @@ -6,5 +6,7 @@ max-line-length = 99 show_source = True exclude = .git, __pycache__, build, dist, docs, tools, venv ignore = - # required for pretty matrix formating: multiple spaces after `,` and `[` - E201, E241 + # required for pretty matrix formatting: multiple spaces after `,` and `[` + E201, E241, W504, + # camelcase 'cPickle' imported as lowercase 'pickle' + N813 |