mirror of
https://github.com/super-linter/super-linter.git
synced 2024-11-09 18:43:34 -05:00
Merge pull request #301 from github/FixPythonLint
Fix honoring pylint config file
This commit is contained in:
commit
a2ea1555e6
3 changed files with 6 additions and 4 deletions
3
.github/linters/.python-lint
vendored
3
.github/linters/.python-lint
vendored
|
@ -1,4 +1,5 @@
|
|||
[MASTER]
|
||||
errors-only=
|
||||
|
||||
# A comma-separated list of package or module names from where C extensions may
|
||||
# be loaded. Extensions are loading into the active Python interpreter and may
|
||||
|
@ -157,7 +158,7 @@ output-format=text
|
|||
reports=no
|
||||
|
||||
# Activate the evaluation score.
|
||||
score=yes
|
||||
score=no
|
||||
|
||||
|
||||
[REFACTORING]
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
[MASTER]
|
||||
errors-only=
|
||||
|
||||
# A comma-separated list of package or module names from where C extensions may
|
||||
# be loaded. Extensions are loading into the active Python interpreter and may
|
||||
|
@ -157,7 +158,7 @@ output-format=text
|
|||
reports=no
|
||||
|
||||
# Activate the evaluation score.
|
||||
score=yes
|
||||
score=no
|
||||
|
||||
|
||||
[REFACTORING]
|
||||
|
|
|
@ -2300,7 +2300,7 @@ RunTestCases()
|
|||
TestCodebase "XML" "xmllint" "xmllint" ".*\.\(xml\)\$"
|
||||
TestCodebase "MARKDOWN" "markdownlint" "markdownlint -c $MD_LINTER_RULES" ".*\.\(md\)\$"
|
||||
TestCodebase "BASH" "shellcheck" "shellcheck" ".*\.\(sh\)\$"
|
||||
TestCodebase "PYTHON" "pylint" "pylint --rcfile $PYTHON_LINTER_RULES -E" ".*\.\(py\)\$"
|
||||
TestCodebase "PYTHON" "pylint" "pylint --rcfile $PYTHON_LINTER_RULES" ".*\.\(py\)\$"
|
||||
TestCodebase "PERL" "perl" "perl -Mstrict -cw" ".*\.\(pl\)\$"
|
||||
TestCodebase "PHP" "php" "php -l" ".*\.\(php\)\$"
|
||||
TestCodebase "RUBY" "rubocop" "rubocop -c $RUBY_LINTER_RULES" ".*\.\(rb\)\$"
|
||||
|
@ -2472,7 +2472,7 @@ if [ "$VALIDATE_PYTHON" == "true" ]; then
|
|||
# Lint the python files #
|
||||
#########################
|
||||
# LintCodebase "FILE_TYPE" "LINTER_NAME" "LINTER_CMD" "FILE_TYPES_REGEX" "FILE_ARRAY"
|
||||
LintCodebase "PYTHON" "pylint" "pylint --rcfile $PYTHON_LINTER_RULES -E" ".*\.\(py\)\$" "${FILE_ARRAY_PYTHON[@]}"
|
||||
LintCodebase "PYTHON" "pylint" "pylint --rcfile $PYTHON_LINTER_RULES" ".*\.\(py\)\$" "${FILE_ARRAY_PYTHON[@]}"
|
||||
fi
|
||||
|
||||
################
|
||||
|
|
Loading…
Reference in a new issue