diff --git a/.pylintrc b/.pylintrc index f7ef308c81e5..7da2df4de3bf 100644 --- a/.pylintrc +++ b/.pylintrc @@ -84,7 +84,6 @@ confidence= disable= missing-docstring, too-many-lines, - ungrouped-imports, import-outside-toplevel, raise-missing-from, too-few-public-methods, diff --git a/scripts/ci_check_no_file_changes.sh b/scripts/ci_check_no_file_changes.sh index e03a6aca54c6..592faa54628b 100755 --- a/scripts/ci_check_no_file_changes.sh +++ b/scripts/ci_check_no_file_changes.sh @@ -34,7 +34,7 @@ REGEXES=() for CHECK in "$@" do if [[ ${CHECK} == "python" ]]; then - REGEX="(^\.github\/workflows\/.*python|^tests\/|^superset\/|^setup\.py|^requirements\/.+\.txt)" + REGEX="(^\.github\/workflows\/.*python|^tests\/|^superset\/|^setup\.py|^requirements\/.+\.txt|^\.pylintrc)" echo "Searching for changes in python files" elif [[ ${CHECK} == "frontend" ]]; then REGEX="(^\.github\/workflows\/.*(frontend|e2e)|^superset-frontend\/)"