Skip to content

Commit

Permalink
fix tox config
Browse files Browse the repository at this point in the history
  • Loading branch information
cocolato committed Jan 13, 2025
1 parent ec1b54b commit d91e0f9
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,13 @@ ignore =
# E251: Unexpected spaces around keyword / parameter equals (types in function definitions)
# E402: module level import not at top of file
# E999: Internal AST compilation error (flake8 specific)
# Apache JSON requires special flags
# E226: missing whitespace around arithmetic operator
# E501: line too long
# Cybin requires special flags
# F401: module imported but unused
# F403: 'from module import *' used; unable to detect undefined names
per-file-ignores =
*.pyx: E211,E225,E226,E227,E251,E402,E999
apache_json.py: E226,E501
*/cybin/__init__.py: F401,F403
*/cybin/__init__.py: F401,F403

0 comments on commit d91e0f9

Please sign in to comment.