-
Notifications
You must be signed in to change notification settings - Fork 36
/
.eslintrc.js
94 lines (88 loc) · 2.45 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
93
94
/*
* (c) Copyright IBM Corp. 2021
* (c) Copyright Instana Inc. and contributors 2018
*/
'use strict';
/**
* The basic eslint configuration for production code. Eslint configs in the individual packages * implicitly inherit
* from this configuration.
*/
module.exports = {
extends: ['airbnb-base', 'plugin:monorepo-cop/recommended'],
env: {
es6: true,
node: true
},
parserOptions: {
// https://node.green/#ES2020
// Min version is 14, ES2020 looks appropiate.
ecmaVersion: 2020,
sourceType: 'script'
},
plugins: ['header', 'instana', 'mocha', 'monorepo-cop'],
rules: {
'arrow-body-style': 'off',
'arrow-parens': 'off',
'class-methods-use-this': 'off',
'comma-dangle': ['error', 'never'],
'consistent-return': 'off',
'default-param-last': 'off',
eqeqeq: ['error', 'allow-null'],
'func-names': 'off',
'function-paren-newline': 'off',
'global-require': 'off',
'header/header': [
'error',
'block',
[
{ pattern: '' },
{ pattern: ' \\(c\\) Copyright IBM Corp. \\d{4}' },
{ pattern: '(?: \\(c\\) Copyright Instana Inc. and contributors \\d{4})?' },
{ pattern: '' }
]
],
'implicit-arrow-linebreak': 'off',
'import/newline-after-import': 'off',
'import/no-dynamic-require': 'off',
'import/no-unresolved': 'off',
'import/order': 'off',
indent: 'off',
'instana/no-unsafe-require': 'error',
'max-classes-per-file': 'off',
'max-len': ['error', 120, 2],
'mocha/no-exclusive-tests': 'error',
'new-cap': 'off',
'no-confusing-arrow': 'off',
'no-console': 'error',
'no-const-assign': 'error',
'no-continue': 'off',
'no-dupe-class-members': 'error',
'no-else-return': 'off',
'no-labels': 'off',
'no-multi-assign': 'off',
'no-param-reassign': 'off',
'no-plusplus': 'off',
'no-promise-executor-return': 'off',
'no-restricted-globals': 'off',
'no-underscore-dangle': 'off',
'no-use-before-define': ['error', 'nofunc'],
'no-var': 'error',
'object-curly-newline': 'off',
'object-shorthand': 'off',
'operator-linebreak': 'off',
'prefer-arrow-callback': 'off',
'prefer-const': [
'error',
{
destructuring: 'all'
}
],
'prefer-destructuring': 'off',
'prefer-object-spread': 'off',
'prefer-rest-params': 'off',
'prefer-spread': 'off',
strict: ['error', 'global'],
'wrap-iife': 'off',
yoda: 'off'
}
};