forked from tinymce/tinymce
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.json
29 lines (29 loc) · 852 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:@tinymce/editor",
"parserOptions": {
"sourceType": "module",
"project": [
"./tsconfig.json",
"modules/*/tsconfig.json"
]
},
"plugins": ["only-warn"],
"rules": {
"@typescript-eslint/camelcase": "off", // leave off
"@typescript-eslint/member-ordering": "off",
"@typescript-eslint/no-empty-function": "off",
"@typescript-eslint/no-shadow": "off",
"@typescript-eslint/no-this-alias": "off",
"@typescript-eslint/no-unsafe-argument": "off",
"@typescript-eslint/prefer-for-of": "off",
"@typescript-eslint/prefer-regexp-exec": "off",
"@typescript-eslint/require-await": "off",
"no-empty": "off",
"no-underscore-dangle": "off",
"one-var": "off",
"prefer-rest-params": "off",
"prefer-spread": "off",
"max-len": ["warn", 260]
}
}