forked from newrelic/docs-website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.js
70 lines (70 loc) · 1.78 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
module.exports = {
extends: [
'plugin:@newrelic/eslint-plugin-newrelic/react',
'plugin:@newrelic/eslint-plugin-newrelic/prettier',
'plugin:jsx-a11y/recommended',
'plugin:react-hooks/recommended',
],
plugins: ['react', 'jsx-a11y', 'graphql'],
settings: {
react: {
version: 'detect',
},
},
overrides: [
{
files: ['*.ts', '*.tsx'],
extends: [
'plugin:@typescript-eslint/recommended',
'plugin:@typescript-eslint/recommended-requiring-type-checking',
],
parserOptions: {
project: ['./tsconfig.json'],
tsconfigRootDir: __dirname,
},
rules: {
'@typescript-eslint/no-var-requires': 0,
'@typescript-eslint/no-empty-function': 2,
'@typescript-eslint/explicit-module-boundary-types': 2,
'@typescript-eslint/explicit-function-return-type': 2,
'@typescript-eslint/no-unsafe-argument': 2,
'@typescript-eslint/no-use-before-define': 2,
'@typescript-eslint/no-explicit-any': 2,
'@typescript-eslint/no-misused-promises': 0,
'@typescript-eslint/no-inferrable-types': 0,
},
},
],
parserOptions: {
files: ['*.js', '*.jsx'],
ecmaFeatures: {
jsx: true,
},
ecmaVersion: 2018,
sourceType: 'module',
},
env: {
browser: true,
es6: true,
},
globals: {
test: 'readonly',
expect: 'readonly',
},
ignorePatterns: ['**/__tests__/**/*', '**/__generated__/**/*'],
rules: {
'no-unused-vars': [
'error',
{
vars: 'all',
varsIgnorePattern: '^_',
args: 'after-used',
argsIgnorePattern: '^_',
ignoreRestSiblings: false,
},
],
'jsx-a11y/no-onchange': 'off',
'react/react-in-jsx-scope': 'off',
'react/prop-types': 'off',
},
};