forked from OpenMined/pygrid-admin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.js
35 lines (35 loc) · 1008 Bytes
/
.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
module.exports = {
root: true,
parserOptions: {ecmaVersion: 8},
parser: '@typescript-eslint/parser',
settings: {react: {version: 'detect'}},
ignorePatterns: ['node_modules/*', '.next/*', '.out/*', '!.prettierrc.js'],
env: {
browser: true,
es6: true,
node: true
},
plugins: ['jsx-a11y', '@typescript-eslint', 'react-hooks'],
extends: [
'eslint:recommended',
'plugin:react/recommended',
'plugin:jsx-a11y/recommended',
'plugin:prettier/recommended',
'plugin:@typescript-eslint/recommended'
],
rules: {
'prettier/prettier': ['error', {}, {usePrettierrc: true}],
'react-hooks/rules-of-hooks': 'error',
'react-hooks/exhaustive-deps': 'warn',
'react/react-in-jsx-scope': 'off',
'react/prop-types': 'off', // TS types for component props
'jsx-a11y/anchor-is-valid': [
'error',
{
components: ['Link'],
specialLink: ['hrefLeft', 'hrefRight'],
aspects: ['invalidHref', 'preferButton']
}
]
}
}