-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.eslintrc-old.json
38 lines (38 loc) · 1.26 KB
/
.eslintrc-old.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
30
31
32
33
34
35
36
37
38
{
"root": true,
"extends": ["neon/common", "neon/node", "neon/typescript", "neon/prettier"],
"parserOptions": {
"project": ["tsconfig.eslint.json", "./apps/*/tsconfig.eslint.json", "./packages/*/tsconfig.eslint.json"]
},
"ignorePatterns": [
"**/node_modules/",
".git/",
"**/dist/",
"**/template/",
"**/coverage/",
"**/storybook-static/",
"**/.next/",
"packages/discord.js/"
],
"rules": {
"id-length": "off",
"import/newline-after-import": "off",
"import/extensions": "off",
"import/no-extraneous-dependencies": "off",
"no-warning-comments": "off",
"no-use-before-define": "off",
"unicorn/prefer-math-trunc": "off",
"unicorn/numeric-separators-style": "off",
"@typescript-eslint/consistent-type-definitions": "off",
"@typescript-eslint/lines-between-class-members": "off",
"@typescript-eslint/no-unsafe-assignment": "off",
"@typescript-eslint/no-unsafe-argument": "off",
"@typescript-eslint/no-unsafe-member-access": "off",
"@typescript-eslint/no-unsafe-call": "off",
"@typescript-eslint/no-unsafe-return": "off",
"@typescript-eslint/prefer-ts-expect-error": "off",
"@typescript-eslint/consistent-type-assertions": "off",
"@typescript-eslint/no-use-before-define": "off",
"eslint-plugin-vue/object-curly-newline": "off"
}
}