11
11
# $7 - use-isort
12
12
# $8 - use-vulture
13
13
# $9 - use-pydocstyle
14
- # $10 - extra-pylint-options
14
+ # ${10} - extra-pylint-options
15
15
# ${11} - extra-pycodestyle-options
16
16
# ${12} - extra-flake8-options
17
17
# ${13} - extra-black-options
@@ -29,14 +29,14 @@ echo use-mypy: $6
29
29
echo use-isort: $7
30
30
echo use-vulture: $8
31
31
echo use-pydocstyle $9
32
- echo extra-pylint-options: $1 0
33
- echo extra-pycodestyle-options: $1 1
34
- echo extra-flake8-options: $1 2
35
- echo extra-black-options: $1 3
36
- echo extra-mypy-options: $1 4
37
- echo extra-isort-options: $1 5
38
- echo extra-vulture-options: $1 6
39
- echo extra-pydocstyle-options: $1 7
32
+ echo extra-pylint-options: ${10}
33
+ echo extra-pycodestyle-options: ${11}
34
+ echo extra-flake8-options: ${12}
35
+ echo extra-black-options: ${13}
36
+ echo extra-mypy-options: ${14}
37
+ echo extra-isort-options: ${15}
38
+ echo extra-vulture-options: ${16}
39
+ echo extra-pydocstyle-options: ${17}
40
40
41
41
# actions path has the copy of this actions repo
42
42
for matcher in $GITHUB_ACTION_PATH /matchers/* .json
@@ -49,9 +49,9 @@ export TERM=xterm
49
49
50
50
if [ " $2 " = true ] ; then
51
51
52
- echo Running: pylint $9 $1
52
+ echo Running: pylint ${10} $1
53
53
54
- $CONDA /bin/pylint --output-format=" colorized" $9 $1
54
+ $CONDA /bin/pylint --output-format=" colorized" ${10} $1
55
55
exit_code=$?
56
56
57
57
if [ " $exit_code " = " 0" ]; then
@@ -165,4 +165,4 @@ if [ "$9" = true ] ; then
165
165
echo " pycodestyle error"
166
166
fi
167
167
168
- fi
168
+ fi
0 commit comments