-
-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Expand file tree
/
Copy patheslint.config.js
More file actions
47 lines (46 loc) · 1.16 KB
/
eslint.config.js
File metadata and controls
47 lines (46 loc) · 1.16 KB
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
import { baseTypeScriptConfig } from './scripts/eslint/config/base.js';
import {
avatarExemption,
wrapperExemptions,
} from './scripts/eslint/config/exemptions.js';
import { cypressConfig } from './scripts/eslint/config/cypress.js';
import { testConfig } from './scripts/eslint/config/tests.js';
import { preferCrudModalTemplateConfig } from './scripts/eslint/config/prefer-crud-modal-template.js';
import {
configFilesConfig,
graphqlConfig,
searchComponentsExemption,
} from './scripts/eslint/config/special.js';
export default [
{
ignores: [
'node_modules',
'dist',
'build',
'package.json',
'package-lock.json',
'tsconfig.json',
'fix-readme-links.js',
'fix-repo-url.js',
'src/shared-components/CheckIn/tagTemplate.ts',
'docs/**',
'*.md',
'docker/**',
'config/docker/setup/nginx*.conf',
'**/*.css',
'**/*.scss',
'**/*.less',
'**/*.json',
'**/*.svg',
],
},
baseTypeScriptConfig,
...wrapperExemptions,
graphqlConfig,
avatarExemption,
searchComponentsExemption,
cypressConfig,
configFilesConfig,
testConfig,
preferCrudModalTemplateConfig,
];