Some changes in Pylint config
This commit is contained in:
parent
60cabb92cf
commit
f5d91bdaa7
2 changed files with 3 additions and 3 deletions
|
@ -151,8 +151,7 @@ disable=raw-checker-failed,
|
||||||
useless-suppression,
|
useless-suppression,
|
||||||
deprecated-pragma,
|
deprecated-pragma,
|
||||||
use-symbolic-message-instead,
|
use-symbolic-message-instead,
|
||||||
wrong-import-position,
|
wrong-import-position
|
||||||
wrong-import-order
|
|
||||||
|
|
||||||
# Enable the message, report, category or checker with the given id(s). You can
|
# Enable the message, report, category or checker with the given id(s). You can
|
||||||
# either give multiple identifier separated by comma (,) or put this option
|
# either give multiple identifier separated by comma (,) or put this option
|
||||||
|
|
3
Makefile
3
Makefile
|
@ -6,9 +6,10 @@ upload:
|
||||||
|
|
||||||
clean:
|
clean:
|
||||||
rm -rf dist/
|
rm -rf dist/
|
||||||
|
rm -rf showdialog.egg-info
|
||||||
rm -rf showdialog/__pycache__/
|
rm -rf showdialog/__pycache__/
|
||||||
rm -rf .mypy_cache/
|
rm -rf .mypy_cache/
|
||||||
|
|
||||||
check:
|
check:
|
||||||
python -m mypy .
|
python -m mypy .
|
||||||
python -m pylint -j 4 ./showdialog
|
python -m pylint ./showdialog
|
||||||
|
|
Loading…
Add table
Reference in a new issue