-
-
Notifications
You must be signed in to change notification settings - Fork 1.6k
/
.eslintrc.js
70 lines (68 loc) · 1.56 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
// Note: All paths are relative to the directory in which eslint is being run, rather than the directory where this file
// lives
// ESLint config docs: https://eslint.org/docs/user-guide/configuring/
module.exports = {
root: true,
env: {
es2017: true,
},
parserOptions: {
ecmaVersion: 2018,
},
extends: ['@sentry-internal/sdk/src/base'],
ignorePatterns: [
'coverage/**',
'build/**',
'dist/**',
'cjs/**',
'esm/**',
'examples/**',
'test/manual/**',
'types/**',
'scripts/*.js',
],
reportUnusedDisableDirectives: true,
overrides: [
{
files: ['*.ts', '*.tsx', '*.d.ts'],
parserOptions: {
project: ['tsconfig.json'],
},
},
{
files: ['test/**/*.ts', 'test/**/*.tsx'],
parserOptions: {
project: ['tsconfig.test.json'],
},
},
{
files: ['jest/**/*.ts', 'scripts/**/*.ts'],
parserOptions: {
project: ['tsconfig.dev.json'],
},
},
{
files: ['*.tsx'],
rules: {
// Turn off jsdoc on tsx files until jsdoc is fixed for tsx files
// See: https://github.com/getsentry/sentry-javascript/issues/3871
'jsdoc/require-jsdoc': 'off',
},
},
{
files: ['scenarios/**', 'dev-packages/rollup-utils/**', 'dev-packages/bundle-analyzer-scenarios/**'],
parserOptions: {
sourceType: 'module',
},
rules: {
'no-console': 'off',
},
},
{
files: ['vite.config.ts'],
parserOptions: {
project: ['tsconfig.test.json'],
},
},
],
};