-
Notifications
You must be signed in to change notification settings - Fork 1
/
.eslintrc.js
59 lines (59 loc) · 1.71 KB
/
.eslintrc.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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
module.exports = {
root: true,
parser: '@typescript-eslint/parser',
extends: [
'eslint:recommended',
'next/core-web-vitals',
'plugin:import/typescript',
'plugin:@typescript-eslint/stylistic-type-checked',
'plugin:@typescript-eslint/strict-type-checked',
'plugin:@react-three/recommended',
'plugin:deprecation/recommended',
'problems',
'prettier',
],
parserOptions: {
ecmaVersion: 2018, // Allows for the parsing of modern ECMAScript features
sourceType: 'module', // Allows for the use of imports
ecmaFeatures: {
jsx: true,
},
project: ['./tsconfig.json'],
},
rules: {
'no-unused-vars': 'off', // Conflicts with TypeScript
'@typescript-eslint/no-non-null-assertion': 'off',
'@typescript-eslint/no-explicit-any': 'off',
'@typescript-eslint/no-unnecessary-condition': 'error',
'@typescript-eslint/consistent-type-definitions': ['error', 'type'],
'prefer-destructuring': 2,
'sort-imports': ['error', { ignoreDeclarationSort: true }],
'import/order': [
'error',
{
alphabetize: { order: 'asc' },
groups: ['builtin', 'external', 'internal', ['parent', 'sibling']],
},
],
'object-shorthand': ['error', 'always'],
'prefer-arrow-callback': 'off', // configs with react/display-name,
'dot-notation': 'off',
'@typescript-eslint/dot-notation': 'error',
'@typescript-eslint/restrict-template-expressions': [
'error',
{ allowNumber: true },
],
},
env: {
browser: true,
node: true,
},
globals: {
JSX: true,
},
settings: {
react: {
version: 'detect', // Tells eslint-plugin-react to automatically detect the version of React to use
},
},
};