-
Notifications
You must be signed in to change notification settings - Fork 56
/
Copy path.eslintrc.old.js
39 lines (39 loc) · 1.21 KB
/
.eslintrc.old.js
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
module.exports = {
env: {
jest: true,
browser: true
},
parserOptions: {
project: './tsconfig.json'
},
extends: ['standard-with-typescript', 'next', 'next/core-web-vitals'],
parser: '@typescript-eslint/parser',
// plugins: [
// "react",
// ],
rules: {
'@typescript-eslint/explicit-module-boundary-types': 'off',
'@typescript-eslint/no-non-null-assertion': 'off',
'@typescript-eslint/no-var-requires': 'off',
'@typescript-eslint/explicit-function-return-type': 'off',
'@typescript-eslint/consistent-type-assertions': 'off',
'@typescript-eslint/strict-boolean-expressions': 'off',
'@typescript-eslint/no-floating-promises': 'off',
'@typescript-eslint/return-await': 'off',
'@typescript-eslint/indent': 'off',
// note you must disable the base rule as it can report incorrect errors
'no-use-before-define': 'off',
'@typescript-eslint/no-use-before-define': ['error'],
camelcase: 'off',
'@next/next/no-html-link-for-pages': 'off',
'@next/next/no-img-element': 'off',
'react/no-unescaped-entities': 'off',
'no-unused-vars': 'off',
'@typescript-eslint/no-unused-vars': [
'warn',
{
varsIgnorePattern: '^_'
}
]
}
}