-
Notifications
You must be signed in to change notification settings - Fork 56
/
.eslintrc.json
29 lines (29 loc) · 955 Bytes
/
.eslintrc.json
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
{
"root": true,
"extends": ["plugin:github/browser", "plugin:github/recommended", "plugin:github/typescript"],
"globals": {
"MarkdownToolbarElement": "readonly",
"MarkdownHeaderButtonElement": "readonly",
"MarkdownBoldButtonElement": "readonly",
"MarkdownItalicButtonElement": "readonly",
"MarkdownQuoteButtonElement": "readonly",
"MarkdownCodeButtonElement": "readonly",
"MarkdownLinkButtonElement": "readonly",
"MarkdownImageButtonElement": "readonly",
"MarkdownUnorderedListButtonElement": "readonly",
"MarkdownOrderedListButtonElement": "readonly",
"MarkdownTaskListButtonElement": "readonly",
"MarkdownMentionButtonElement": "readonly",
"MarkdownRefButtonElement": "readonly"
},
"overrides": [
{
"files": "test/**/*.js",
"rules": {
"github/unescaped-html-literal": "off",
"github/no-inner-html": "off",
"i18n-text/no-en": "off"
}
}
]
}