-
Notifications
You must be signed in to change notification settings - Fork 4
/
eslint.config.js
48 lines (46 loc) · 1.37 KB
/
eslint.config.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
const { eslintConfigs } = require('@aligent/ts-code-standards');
const eslintPluginImport = require('eslint-plugin-import');
const jsonParser = require('jsonc-eslint-parser');
const nxEslintPlugin = require('@nx/eslint-plugin');
const eslintBaseConfig = [
...eslintConfigs.core,
{
ignores: ['**/*.js', '**/*.mjs', '**/coverage'],
},
{
files: ['**/*.ts'],
plugins: {
'@nx': nxEslintPlugin,
import: eslintPluginImport,
},
rules: {
'@nx/enforce-module-boundaries': [
'error',
{
enforceBuildableLibDependency: true,
allow: [],
depConstraints: [
{
sourceTag: '*',
onlyDependOnLibsWithTags: ['*'],
},
],
},
],
'import/no-extraneous-dependencies': [
'warn',
{
optionalDependencies: false,
peerDependencies: false,
bundledDependencies: false,
packageDir: ['.', '../..'],
},
],
},
},
{
files: ['**/*.json'],
languageOptions: { parser: jsonParser },
},
];
module.exports = eslintBaseConfig;