forked from newrelic/developer-website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc.js
54 lines (53 loc) · 1.51 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
module.exports = {
// https://github.com/newrelic/eslint-plugin-newrelic
extends: [
'plugin:@typescript-eslint/recommended',
'plugin:@newrelic/eslint-plugin-newrelic/react',
'plugin:@newrelic/eslint-plugin-newrelic/prettier',
'plugin:jsx-a11y/recommended',
'plugin:react-hooks/recommended',
],
// https://github.com/yannickcr/eslint-plugin-react#configuration
plugins: ['react', 'jsx-a11y', 'markdown', '@typescript-eslint', 'graphql'],
settings: {
react: {
version: 'detect',
},
},
parser: '@typescript-eslint/parser',
parserOptions: {
ecmaFeatures: {
jsx: true,
},
ecmaVersion: 2018,
sourceType: 'module',
project: ['./tsconfig.json'],
},
env: {
browser: true,
es6: true,
},
ignorePatterns: ['**/__tests__/**/*', '**/__generated__/**/*'],
rules: {
'no-unused-vars': [
'error',
{
vars: 'all',
varsIgnorePattern: '^_',
args: 'after-used',
argsIgnorePattern: '^_',
ignoreRestSiblings: false,
},
],
'jsx-a11y/no-onchange': 'off',
'react/jsx-curly-brace-presence': 'off',
'react/prop-types': 'off',
// typescript rules will also be invoked for js files
'@typescript-eslint/no-var-requires': 'off',
'@typescript-eslint/no-empty-function': 'off',
'@typescript-eslint/explicit-function-return-type': 1,
'@typescript-eslint/no-unsafe-argument': 1,
'@typescript-eslint/explicit-module-boundary-types': 1,
'@typescript-eslint/no-explicit-any': 1,
},
};