diff options
author | Munyoki Kilyungi | 2023-09-05 16:17:09 +0300 |
---|---|---|
committer | Munyoki Kilyungi | 2023-09-05 16:17:09 +0300 |
commit | 0bdad60654806589cf6e9f0cdbea6ed4e70471f8 (patch) | |
tree | c1fd8ed6820b79dd077056ee72ba73efec32b550 /.pylintrc | |
parent | 87682023da7620bdf52b682dba5b922b4e452978 (diff) | |
download | genenetwork3-0bdad60654806589cf6e9f0cdbea6ed4e70471f8.tar.gz |
Ignore linting version control files and migrations folder
* .pylintrc: Add VCS and migrations to ignore and ignore-paths respectively.
Signed-off-by: Munyoki Kilyungi <me@bonfacemunyoki.com>
Diffstat (limited to '.pylintrc')
-rw-r--r-- | .pylintrc | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -1,3 +1,7 @@ +[MAIN] +ignore=CVS +ignore-paths=migrations + [SIMILARITIES] ignore-imports=yes @@ -7,4 +11,4 @@ ignore-imports=yes disable= fixme, duplicate-code, - no-else-return
\ No newline at end of file + no-else-return |