forked from MetaFam/TheGame
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.js
83 lines (76 loc) · 2.24 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
module.exports = {
root: true,
extends: [
'airbnb-base',
'airbnb-typescript/base',
'airbnb/hooks',
'plugin:@typescript-eslint/eslint-recommended',
'plugin:@typescript-eslint/recommended',
'plugin:jest/recommended',
'prettier',
],
parserOptions: {
project: 'tsconfig.json',
tsconfigRootDir: __dirname,
ecmaVersion: 6,
},
ignorePatterns: ['packages/web/next.config.js'],
plugins: ['simple-import-sort'],
settings: {
'import/resolver': {
typescript: {},
},
},
rules: {
'@typescript-eslint/explicit-function-return-type': 'off',
// Doesn't work for FC: https://github.com/yannickcr/eslint-plugin-react/issues/2353
'react/prop-types': 'off',
// Prefer non-default exports
'import/no-default-export': 'off',
'import/prefer-default-export': 'off',
// Auto-sort imports
'sort-imports': 'off',
'import/order': 'off',
'simple-import-sort/imports': 'error',
'simple-import-sort/exports': 'error',
// unary operators are ok
'no-plusplus': 'off',
// Using a type system makes it safe enough to spread props
'react/jsx-props-no-spreading': 'off',
// we want to be able to use functions before definition
'@typescript-eslint/no-use-before-define': 'off',
'@typescript-eslint/ban-ts-comment': [
'error',
{
'ts-expect-error': 'allow-with-description',
minimumDescriptionLength: 5,
},
],
'no-bitwise': 'off',
},
overrides: [
{
// assuming Next.js application
files: '**/pages/**/*.{ts,tsx}',
rules: {
'react/react-in-jsx-scope': 'off', // react is a global in this folder
'import/no-default-export': 'off', // pages have to have a default export
'import/prefer-default-export': 'off',
'@typescript-eslint/explicit-module-boundary-types': [
// So we can infer prop types
'warn',
{ allowedNames: ['getStaticProps'] },
],
},
},
{
files: ['**/*.stories.*'],
rules: {
// Storybook requires default exports for stories
'import/no-default-export': 'off',
'@typescript-eslint/explicit-module-boundary-types': 'off',
},
},
],
parser: '@typescript-eslint/parser',
};