From f5d91bdaa71ee671b54a18e6ccf51a86aa5f8c22 Mon Sep 17 00:00:00 2001 From: DarkCat09 Date: Tue, 1 Nov 2022 16:41:20 +0400 Subject: [PATCH] Some changes in Pylint config --- .pylintrc | 3 +-- Makefile | 3 ++- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.pylintrc b/.pylintrc index 32c8058..a35e480 100644 --- a/.pylintrc +++ b/.pylintrc @@ -151,8 +151,7 @@ disable=raw-checker-failed, useless-suppression, deprecated-pragma, use-symbolic-message-instead, - wrong-import-position, - wrong-import-order + wrong-import-position # 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 diff --git a/Makefile b/Makefile index 9f931bd..83bb3a6 100644 --- a/Makefile +++ b/Makefile @@ -6,9 +6,10 @@ upload: clean: rm -rf dist/ + rm -rf showdialog.egg-info rm -rf showdialog/__pycache__/ rm -rf .mypy_cache/ check: python -m mypy . - python -m pylint -j 4 ./showdialog + python -m pylint ./showdialog