git-linter/.git-lint

72 lines
1.3 KiB
Plaintext
Raw Normal View History

2016-09-19 22:36:58 +00:00
[debugging]
comment = Check to Ensure no debugger commands get checked in
2016-09-19 22:36:58 +00:00
output = Checking for debugger commands in Javascript...
command = grep -n debugger
match = .js
2016-09-19 22:36:58 +00:00
print = True
condition = output
[jshint]
output = Running Jshint...
command = jshint -c %(repodir)s/.git-lint/jshint.rc
match = .js
2016-09-19 22:36:58 +00:00
print = False
condition = error
[coffeelint]
output = Running Coffeelint...
command = coffeelint
match = .coffee
2016-09-19 22:36:58 +00:00
print = False
condition = error
[jscs]
output = Running JSCS...
command = jscs -c %(repodir)s/.git-lint/jscs.rc
match = .js
2016-09-19 22:36:58 +00:00
print = False
condition = error
[pep8]
comment = PEP8 with some white space and line length checking turned off
2016-09-19 22:36:58 +00:00
output = Running pep8...
command = pep8 -r --ignore=E501,W293,W391
match = .py
2016-09-19 22:36:58 +00:00
print = False
condition = error
[xmllint]
output = Running xmllint...
command = xmllint
match = .xml
2016-09-19 22:36:58 +00:00
print = False
condition = error
[csslint]
output = Running csslint...
command = csslint --quiet
match = .css
2016-09-19 22:36:58 +00:00
print = False
condition = error
[eslint]
output = Running eslint...
command = eslint
match = .js
2016-09-19 22:36:58 +00:00
print = False
condition = error
[jsonlint]
output = Running jsonlint...
command = jsonlint -q
match = .json
2016-09-19 22:36:58 +00:00
print = False
condition = error
2016-09-30 19:10:52 +00:00
[readability]
output = Running Text Style Check
match = .rst
2016-10-03 19:44:57 +00:00
command = git-lint-style --min=6 --max=12
2016-09-30 19:10:52 +00:00
print = False
condition = error