-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.js
90 lines (84 loc) · 1.81 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
const glob = require('glob');
const path = require('path');
const lernaConfig = require('./lerna.json');
const ROOT_PKG_PATH = __dirname;
const getPackages = () => (
lernaConfig.packages
.map((packageGlob) => glob.sync(packageGlob))
.flat()
);
const getPackageOptions = (pkg) => ({
rules: {
'import/no-extraneous-dependencies': ['error',
{ packageDir: [ROOT_PKG_PATH, path.resolve(pkg)] },
],
},
settings: {
'import/internal-regex': /^@(root)?/,
'import/resolver': {
alias: {
map: [
['@root', ROOT_PKG_PATH],
['@', path.resolve(pkg)],
],
},
},
},
overrides: [
{
files: [
'**/*.ts',
'**/*.tsx',
'**/*.d.ts',
],
extends: ['nebenan/typescript'],
parserOptions: {
tsconfigRootDir: path.resolve(pkg),
project: ['./tsconfig.json'],
},
settings: {
'import/internal-regex': /^@(root)?/,
'import/resolver': {
alias: {
map: [
['@root', ROOT_PKG_PATH],
['@', path.resolve(pkg)],
],
},
},
},
},
],
});
const getOverridesForPackage = (pkg) => ({
files: [`${pkg}/**/*`],
...getPackageOptions(pkg),
});
module.exports = {
extends: [
'nebenan',
],
root: true,
overrides: [
{
files: ['**/*.test.js', '**/*.test.jsx'],
env: {
mocha: true,
},
rules: {
'no-unused-expressions': 'off',
},
},
{
files: ['.preview/**/*'],
// Use react package template as baseline for @-imports in preview
...getPackageOptions('package-templates/react'),
},
...getPackages().map(getOverridesForPackage),
],
rules: {
'import/extensions': ['error', 'never', {
json: 'always',
}],
},
};