This repository was archived by the owner on May 30, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathhtml-severities.js
More file actions
47 lines (47 loc) · 1.35 KB
/
html-severities.js
File metadata and controls
47 lines (47 loc) · 1.35 KB
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
module.exports = {
'attr-bans': 'error',
'attr-name-style': 'error',
'attr-new-line': 'warning',
'attr-no-dup': 'error',
'attr-no-unsafe-char': 'error',
'attr-order': 'warning',
'attr-quote-style': 'warning',
'attr-req-value': 'error',
'attr-validate': 'error',
'class-no-dup': 'warning',
'class-style': 'error',
'doctype-first': 'warning',
'doctype-html5': 'warning',
'fig-req-figcaption': 'warning',
'focusable-tabindex-style': 'warning',
'head-req-title': 'warning',
'head-valid-content-model': 'warning',
'href-style': 'error',
'html-req-lang': 'warning',
'html-valid-content-model': 'warning',
'id-class-no-ad': 'error',
'id-class-style': 'error',
'id-no-dup': 'error',
'img-req-alt': 'error',
'img-req-src': 'error',
'indent-style': 'warning',
'indent-width': 'warning',
'indent-width-cont': 'warning',
'input-radio-req-name': 'warning',
'input-req-label': 'warning',
'label-req-for': 'warning',
'lang-style': 'warning',
'line-end-style': 'warning',
'line-max-len': 'error',
'page-title': 'warning',
'spec-char-escape': 'error',
'table-req-caption': 'warning',
'table-req-header': 'warning',
'tag-bans': 'error',
'tag-close': 'error',
'tag-name-lowercase': 'warning',
'tag-name-match': 'error',
'tag-self-close': 'warning',
'title-max-len': 'warning',
'title-no-dup': 'warning',
};