forked from elastic/apm-agent-rum-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc.js
92 lines (90 loc) · 2.34 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
87
88
89
90
91
92
const { readFileSync } = require('fs')
const { join, resolve } = require('path')
/**
* Helps with using custom eslint rules without creating and publishing as plugin
*/
const rulesDirPlugin = require('eslint-plugin-rulesdir')
rulesDirPlugin.RULES_DIR = join(__dirname, 'scripts/eslint-rules')
const MIT_LICENSE = readFileSync('./LICENSE', 'utf-8')
const LICENSE_HEADER =
'/**\n' +
MIT_LICENSE.split('\n')
.map(line => ` * ${line}`)
.join('\n') +
'\n */'
module.exports = {
env: {
es6: true,
browser: true,
node: true
},
parserOptions: {
ecmaVersion: 2018,
sourceType: 'module',
ecmaFeatures: {
legacyDecorators: true
}
},
extends: [
'plugin:prettier/recommended',
'plugin:react/recommended',
'prettier/@typescript-eslint',
'plugin:@typescript-eslint/recommended'
],
parser: 'babel-eslint',
plugins: ['standard', 'rulesdir'],
rules: {
'no-unused-vars': 'error',
'prettier/prettier': ['error', { singleQuote: true, semi: false }],
'object-shorthand': 'error',
'rulesdir/require-license-header': [
'error',
{
license: LICENSE_HEADER
}
],
'react/prop-types': 0,
'@typescript-eslint/explicit-function-return-type': 0,
'@typescript-eslint/no-explicit-any': 0,
'@typescript-eslint/member-delimiter-style': 0
},
settings: {
react: {
version: 'detect'
}
},
overrides: [
{
/**
* babel-eslint does not understand some of the typescript features
* so it's better to use '@typescript-eslint/parser' for .ts files
*/
files: ['**/*.ts'],
parser: '@typescript-eslint/parser',
plugins: ['@typescript-eslint'],
parserOptions: {
ecmaVersion: 2018,
sourceType: 'module'
}
},
{
/**
* Disable specific rule that are overrided by
* typescript eslint config on js files
*/
files: ['**/*.js'],
rules: {
'@typescript-eslint/no-var-requires': 0,
'@typescript-eslint/no-empty-function': 0,
'@typescript-eslint/no-use-before-define': 0,
'@typescript-eslint/camelcase': 0,
'@typescript-eslint/no-unused-vars': 0,
'@typescript-eslint/no-this-alias': 0,
'no-var': 0,
'prefer-const': 0,
'prefer-rest-params': 0,
'prefer-spread': 0
}
}
]
}