-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.js
62 lines (60 loc) · 1.77 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
/* eslint-env node */
module.exports = {
root: true,
extends: ['sentry-app/strict'],
globals: {
require: false,
expect: false,
MockApiClient: true,
tick: true,
jest: true,
},
rules: {
'react-hooks/exhaustive-deps': [
'error',
{additionalHooks: '(useEffectAfterFirstRender|useMemoWithPrevious)'},
],
// TODO(@anonrig): Remove this from eslint-sentry-config
'space-infix-ops': 'off',
'object-shorthand': 'off',
'object-curly-spacing': 'off',
'import/no-amd': 'off',
'no-danger-with-children': 'off',
'no-fallthrough': 'off',
'no-obj-calls': 'off',
'array-bracket-spacing': 'off',
'computed-property-spacing': 'off',
'react/no-danger-with-children': 'off',
},
// JSON file formatting is handled by Biome. ESLint should not be linting
// and formatting these files.
ignorePatterns: ['*.json'],
overrides: [
{
files: ['static/**/*.spec.{ts,js}', 'tests/js/**/*.{ts,js}'],
extends: ['plugin:testing-library/react', 'sentry-app/strict'],
rules: {
// TODO(@anonrig): Remove this from eslint-sentry-config
'space-infix-ops': 'off',
'object-shorthand': 'off',
'object-curly-spacing': 'off',
'import/no-amd': 'off',
'no-danger-with-children': 'off',
'no-fallthrough': 'off',
'no-obj-calls': 'off',
'array-bracket-spacing': 'off',
'computed-property-spacing': 'off',
'react/no-danger-with-children': 'off',
},
},
{
// We specify rules explicitly for the sdk-loader here so we do not have
// eslint ignore comments included in the source file, which is consumed
// by users.
files: ['**/js-sdk-loader.ts'],
rules: {
'no-console': 'off',
},
},
],
};