-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.sonarwhalrc
67 lines (67 loc) · 1.51 KB
/
.sonarwhalrc
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"browserslist": [],
"connector": {
"name": "chrome",
"options": {
"waitFor": 1000
}
},
"formatters": [
"codeframe"
],
"ignoredUrls": [
{
"domain": "data:.*",
"rules": [
"http-cache"
]
},
{
"domain": "https://www\\.google-analytics\\.com/.*",
"rules": [
"content-type",
"http-cache"
]
}
],
"rules": {
"amp-validator": "off",
"apple-touch-icons": "warning",
"axe": "warning",
"content-type": [
"warning",
{
".*\\.js": "application/javascript; charset=utf-8"
}
],
"disown-opener": "warning",
"highest-available-document-mode": "warning",
"html-checker": "warning",
"http-cache": "warning",
"image-optimization-cloudinary": "off",
"manifest-app-name": "warning",
"manifest-exists": "warning",
"manifest-file-extension": "warning",
"manifest-is-valid": "warning",
"meta-charset-utf-8": "warning",
"meta-viewport": "warning",
"no-disallowed-headers": [
"warning",
{
"ignore": [
"Server"
]
}
],
"no-friendly-error-pages": "warning",
"no-html-only-headers": "warning",
"no-http-redirects": "warning",
"no-protocol-relative-urls": "warning",
"no-vulnerable-javascript-libraries": "warning",
"ssllabs": "off",
"strict-transport-security": "warning",
"validate-set-cookie-header": "warning",
"x-content-type-options": "warning"
},
"rulesTimeout": 120000
}