Permalink
Cannot retrieve contributors at this time
15 lines (15 sloc)
507 Bytes
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
matador/.flake8
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[flake8] | |
# E226: whitespace around operators which can look ugly, IMO | |
# W503 and W504 can be contradictory: linebreaks before/after binary operators | |
ignore = E226, W503, W504, E203 | |
# same width as GH editor | |
max-line-length = 127 | |
# these files are either autogenerated or no longer maintained | |
exclude = | |
./docs | |
./matador/plugins/* | |
castep_params | |
scripts/plot_convergence_old | |
# ignore star imports in chem utils that bring in all constants | |
per-file-ignores = | |
matador/utils/chem_utils.py:F405 |