forked from newrelic/instant-observability-website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.js
86 lines (86 loc) · 2.3 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
84
85
86
module.exports = {
// https://github.com/newrelic/eslint-plugin-newrelic
extends: [
'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'],
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: {
ecmaFeatures: {
jsx: true,
},
ecmaVersion: 2018,
sourceType: 'module',
},
env: {
browser: true,
es6: true,
},
ignorePatterns: [
'**/__tests__/**/*',
'**/node_modules/**/*',
'**/public/**/*',
'**/static/*',
'src/gatsby-types.d.ts',
],
rules: {
'jsx-a11y/no-onchange': 0,
'no-unused-vars': [
'error',
{
vars: 'all',
varsIgnorePattern: '^_',
args: 'after-used',
argsIgnorePattern: '^_',
ignoreRestSiblings: false,
},
],
// This prevents us from accidently importing from the theme's `index` file
// and pulling in a bunch of extra dependencies.
'no-restricted-imports': [
'error',
{
paths: [
{
name: '@newrelic/gatsby-theme-newrelic',
message:
'Please import the module directly from @newrelic/gatsby-theme-newrelic/src/[module] instead.',
},
],
patterns: ['!@newrelic/gatsby-theme-newrelic/*'],
},
],
},
};