diff --git a/setup.cfg b/setup.cfg index 2afc717..548880b 100644 --- a/setup.cfg +++ b/setup.cfg @@ -9,6 +9,8 @@ docstring-quotes = double convention = google docstring_style = google strictness = short + +[darglint] ignore_regex = ^_(.*) [isort] diff --git a/setup.py b/setup.py index cfd3acf..0462ec3 100755 --- a/setup.py +++ b/setup.py @@ -8,7 +8,7 @@ # Package meta-data. NAME = "catalyst-codestyle" -VERSION = "21.09" +VERSION = "21.09.1" DESCRIPTION = "Catalyst.Codestyle" URL = "https://github.com/catalyst-team/codestyle" EMAIL = "scitator@gmail.com" diff --git a/styles/flake8.toml b/styles/flake8.toml index fa03641..293e8d8 100644 --- a/styles/flake8.toml +++ b/styles/flake8.toml @@ -16,7 +16,9 @@ docstring-quotes = "double" convention = "google" docstring_style = "google" strictness = "short" + +["setup.cfg".darglint] ignore_regex = "^_(.*)" [nitpick.files."setup.cfg"] -comma_separated_values = ["flake8.ignore", "flake8.class_attributes_order"] +comma_separated_values = ["flake8.ignore"]