Add src to path when running pylint
- this will allow pylint to run in the main directory without complaining about imports
This commit is contained in:
parent
50ee7fa740
commit
0bc1dfdc8b
|
@ -11,7 +11,11 @@ ignore = E722,F841
|
||||||
# F841: pylint is preferred for unused-variable
|
# F841: pylint is preferred for unused-variable
|
||||||
|
|
||||||
# pylint honours the [MESSAGES CONTROL] section
|
# pylint honours the [MESSAGES CONTROL] section
|
||||||
|
# as well as [MASTER] section
|
||||||
[MESSAGES CONTROL]
|
[MESSAGES CONTROL]
|
||||||
disable=invalid-name,bare-except,broad-except
|
disable=invalid-name,bare-except,broad-except
|
||||||
# invalid-name: needs fixing during a large, project-wide refactor
|
# invalid-name: needs fixing during a large, project-wide refactor
|
||||||
# bare-except,broad-except: Need fixing once thorough testing is easier
|
# bare-except,broad-except: Need fixing once thorough testing is easier
|
||||||
|
|
||||||
|
[MASTER]
|
||||||
|
init-hook = import sys;sys.path.append('src')
|
||||||
|
|
Loading…
Reference in New Issue
Block a user