skip_glob = '^((?!py$).)*$' # isort all Python files
float_to_top=true
skip = "setup.py" # Poetry generates it and we want to keep it unchanged
+known_first_party="knot_resolver"
[tool.pylint."MESSAGES CONTROL"]
disable= [
check_rv $?
echo
+# check imports formatting using isort
+echo -e "${yellow}Checking imports formatting using isort...${reset}"
+isort python/knot_resolver tests/manager scripts/poe-tasks/utils/create_setup.py --check --diff
+check_rv $?
+echo
+
# check code with pylint
echo -e "${yellow}Linting using pylint...${reset}"
pylint python/knot_resolver