forked from shaunstanislaus/sonar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.sonarrc
32 lines (32 loc) · 1021 Bytes
/
.sonarrc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
{
"connector": {
"name": "chrome",
"options": {
"waitFor": 1000
}
},
"formatters": "stylish",
"rulesTimeout": 120000,
"rules": {
"amp-validator": "off",
"apple-touch-icons": "warning",
"axe": "warning",
"content-type": "warning",
"disown-opener": "warning",
"highest-available-document-mode": "warning",
"html-checker": "warning",
"manifest-exists": "warning",
"manifest-file-extension": "warning",
"manifest-is-valid": "warning",
"meta-charset-utf-8": "warning",
"no-disallowed-headers": "warning",
"no-friendly-error-pages": "warning",
"no-html-only-headers": "warning",
"no-protocol-relative-urls": "warning",
"no-vulnerable-javascript-libraries": "warning",
"ssllabs": "off",
"strict-transport-security": "warning",
"x-content-type-options": "warning",
"validate-set-cookie-header": "warning"
}
}