forked from coreruleset/coreruleset
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.yamllint.yml
More file actions
22 lines (19 loc) · 751 Bytes
/
.yamllint.yml
File metadata and controls
22 lines (19 loc) · 751 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
extends: default
rules:
# Test lines can be big
line-length:
max: 1024
level: warning
# These files below have very large lines, needed for the test.
# So they will raise warnings every time.
ignore: |
tests/regression/tests/REQUEST-920-PROTOCOL-ENFORCEMENT/920380.yaml
tests/regression/tests/REQUEST-920-PROTOCOL-ENFORCEMENT/920390.yaml
tests/regression/tests/REQUEST-941-APPLICATION-ATTACK-XSS/941360.yaml
tests/regression/tests/REQUEST-942-APPLICATION-ATTACK-SQLI/942521.yaml
tests/regression/tests/REQUEST-942-APPLICATION-ATTACK-SQLI/942522.yaml
# don't bother me with this rule
indentation: disable
comments:
require-starting-space: true # default
min-spaces-from-content: 1