File tree 5 files changed +12
-6
lines changed
5 files changed +12
-6
lines changed Original file line number Diff line number Diff line change 3
3
--paren-tightness=2
4
4
--cuddled-else
5
5
--warning-output
6
+ --converge
Original file line number Diff line number Diff line change 34
34
types : [text]
35
35
files : ^(bash_completion|completions/.+|test/run*|.+\.sh(\.in)?)$
36
36
exclude : completions/Makefile.*$
37
+ - repo : https://github.com/perltidy/perltidy
38
+ rev : cbb4a687dd331db69219599d84d527397402efdd
39
+ hooks :
40
+ - id : perltidy
41
+ types : [text]
42
+ files : ^(helpers/perl|.+\.p[ml])$
Original file line number Diff line number Diff line change 3
3
if [ $DIST = tools ]; then
4
4
rc=0
5
5
perlcritic helpers/perl; rc=$(( rc+ $? ))
6
- perltidy -nst -nse helpers/perl; rc=$(( rc+ $? ))
7
- if [ -e helpers/perl.ERR ]; then
8
- cat helpers/perl.ERR
9
- rc=$(( rc+ 1 ))
10
- fi
11
6
pre-commit run --all-files; rc=$(( rc+ $? ))
12
7
exit $rc
13
8
fi
Original file line number Diff line number Diff line change
1
+ package BashCompletionModule ;
2
+ use strict;
3
+ use warnings;
4
+ 1;
Original file line number Diff line number Diff line change 1
1
black == 19.10b0 ;python_version >= "3.6"
2
2
pexpect >= 4
3
- pre-commit
3
+ pre-commit >= 2.1.0
4
4
pytest >= 3.6
5
5
pytest-xdist
6
6
typing ;python_version < "3.5"
You can’t perform that action at this time.
0 commit comments