forked from Kitware/vtk-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.js
78 lines (74 loc) · 2.33 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
const path = require('path');
const prettierConf = require('./prettier.config.js');
module.exports = {
parser: '@babel/eslint-parser',
parserOptions: {
babelOptions: {
configFile: path.resolve(__dirname, '.babelrc.json'),
},
},
extends: ['airbnb/base', 'prettier'],
rules: {
'prettier/prettier': ['error', prettierConf],
// But we want the following
'no-multi-spaces': ['error', { exceptions: { ImportDeclaration: true } }],
'no-param-reassign': ['error', { props: false }],
'no-unused-vars': ['error', { args: 'none' }],
'prefer-destructuring': 0,
'import/no-extraneous-dependencies': 0, // Needed for tests
// 'no-mixed-operators': 'error', // Wish we can put it back with prettier
// Not for us
'jsx-a11y/label-has-for': 0,
'no-console': 0,
'no-plusplus': 0,
'no-underscore-dangle': 0,
'import/no-named-as-default': 0,
'import/no-named-as-default-member': 0,
// Introduced with new eslint
// and no time to fix them...
// [...]
'linebreak-style': 0,
},
plugins: ['prettier'],
globals: {
__BASE_PATH__: false,
VRFrameData: true,
},
settings: {
'import/resolver': {
webpack: {
config: {
resolve: {
alias: {
// Since vtk.js examples are written as if the vtk.js package is a dependency,
// we need to resolve example imports as if they were referencing vtk.js/Sources.
// the Examples/Utilities hack allows for imports from those folders, since our
// last alias overrides vtk.js/* paths to point to vtk.js/Sources/*.
'vtk.js/Data': path.resolve(__dirname, 'Data'),
'vtk.js/Examples': path.resolve(__dirname, 'Examples'),
'vtk.js/Utilities': path.resolve(__dirname, 'Utilities'),
'vtk.js/Sources': path.resolve(__dirname, 'Sources'),
'vtk.js': path.resolve(__dirname, 'Sources'),
'@kitware/vtk.js': path.resolve(__dirname, 'Sources'),
},
},
},
},
},
},
env: {
es2020: true,
es6: true,
browser: true,
},
ignorePatterns: [
// ignore old Actor example
'**/example_/*.js',
// ignore js files in utilities
'Utilities/**/*.js',
// ignore configs
'karma.conf.js',
'webpack.*.js',
'.eslintrc.js',
],
};