-
Notifications
You must be signed in to change notification settings - Fork 1
/
browser.js
146 lines (138 loc) · 3.85 KB
/
browser.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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
const base = require('./base');
module.exports = {
parser: '@typescript-eslint/parser',
extends: [
'airbnb',
'plugin:promise/recommended',
'plugin:jest/recommended',
'plugin:unicorn/recommended',
'plugin:import/typescript',
'prettier',
],
env: {
browser: true,
jest: true,
'jest/globals': true,
es6: true,
},
settings: {
// Apply special parsing for TypeScript files
'import/parsers': {
'@typescript-eslint/parser': ['.ts', '.tsx', '.d.ts'],
},
// Append 'ts' extensions to Airbnb 'import/resolver' setting
'import/resolver': {
node: {
extensions: ['.mjs', '.js', '.ts', '.tsx', '.d.ts', '.json', '.jsx'],
},
typescript: {
alwaysTryTypes: true,
},
},
// Append 'ts' extensions to Airbnb 'import/extensions' setting
'import/extensions': ['.js', '.ts', '.tsx', '.mjs', '.jsx'],
react: {
version: 'detect',
},
},
plugins: ['promise', 'jest', 'unicorn', 'react-hooks', '@typescript-eslint', 'import'],
parserOptions: {
sourceType: 'module',
requireConfigFile: false,
ecmaVersion: 2020,
presets: ['@babel/preset-react'],
ecmaFeatures: {
jsx: true,
},
},
globals: {
document: true,
navigator: true,
window: true,
__DEV__: true,
__TEST__: true,
__PROD__: true,
__STAGING__: true,
},
overrides: [
...base.overrides,
// Disable prop-types rule in .tsx files
{
files: ['**/*.tsx'],
rules: {
'react/prop-types': 'off',
},
},
],
rules: {
...base.rules,
// Only warn when arrow function can use implicit return
'arrow-body-style': ['warn', 'as-needed'],
'unicorn/prefer-query-selector': 0,
// Disable requiring class components to be created with same order
'react/sort-comp': 0,
// Replace Airbnb 'camelcase' rule with '@typescript-eslint/naming-convention'
// https://github.com/typescript-eslint/typescript-eslint/blob/master/packages/eslint-plugin/docs/rules/naming-convention.md
camelcase: 'off',
'react/jsx-filename-extension': [1, { extensions: ['.js', '.jsx', '.tsx'] }],
// Disable requiring every optional prop to have a default value
'react/require-default-props': 0,
// Check labels have an id to associate with an input
'jsx-a11y/label-has-associated-control': [
2,
{
required: {
some: ['nesting', 'id'],
},
},
],
// Error when rules of hooks are broken
'react-hooks/rules-of-hooks': 'error',
// Warn when not all deps are in dep array
'react-hooks/exhaustive-deps': 'warn',
// Disable props not allowed to be spread
'react/jsx-props-no-spreading': 0,
// Error when 'any' prop-type is used
'react/forbid-prop-types': [
'error',
{
forbid: ['any'],
},
],
// Disable requiring React to be imported. Not needed with v17+ of React
'react/react-in-jsx-scope': 0,
'react/jsx-uses-react': 0,
// Make href required except when using Link component 'to' is accepted
'jsx-a11y/anchor-is-valid': [
'error',
{
components: ['Link'],
specialLink: ['to'],
},
],
// Do not require file extensions
'import/extensions': [
'error',
'ignorePackages',
{
js: 'never',
mjs: 'never',
jsx: 'never',
ts: 'never',
tsx: 'never',
},
],
// Disabled. default export is not required
'import/prefer-default-export': 0,
// Allow component to be standard function or arrow function
'react/function-component-definition': [
2,
{
namedComponents: ['function-declaration', 'arrow-function'],
},
],
// https://github.com/typescript-eslint/typescript-eslint/issues/2540
'no-use-before-define': 'off',
'@typescript-eslint/no-use-before-define': 'warn',
},
};