generated from manga-raiku/raiku-plugin-template
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc
29 lines (29 loc) · 815 Bytes
/
.eslintrc
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
{
"extends": [
"@tachibana-shin/eslint-config"
],
"parser": "@typescript-eslint/parser",
"parserOptions": {
"project": "tsconfig.json",
"sourceType": "module"
},
"rules": {
"n/no-unpublished-import": "off",
"functional/prefer-immutable-types": "off",
"functional/no-classes": "off",
"no-undef": "off",
"n/no-unsupported-features/es-builtins": [
"error",
{
"version": ">=16.0.0",
"ignores": []
}
],
"no-void": ["error", { "allowAsStatement": true }],
"@typescript-eslint/no-unsafe-member-access": "off",
"@typescript-eslint/no-unsafe-call": "off",
"@typescript-eslint/no-unsafe-assignment": "off",
"@typescript-eslint/restrict-template-expressions": "off",
"@typescript-eslint/no-unsafe-argument": "off"
}
}