-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy patheslint.jsonc.ts
More file actions
80 lines (75 loc) · 1.56 KB
/
eslint.jsonc.ts
File metadata and controls
80 lines (75 loc) · 1.56 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
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
import type {
Linter,
} from 'eslint';
import uncustomizedPluginJSONC from 'eslint-plugin-jsonc';
const rulesForPackageJSON: Linter.Config = {
name : 'amd-shark-ui/jsonc/package-json',
files: [
'**/package.json',
],
rules: {
'jsonc/sort-keys': [
'error',
{
pathPattern: '^scripts$',
order : [
'dev',
'prepare',
'lint',
'lint:docs',
'lint:json',
'type-check',
'build',
'build-only',
'preview',
'test:unit',
'test:unit:ensure-all',
'test:unit:generate-missing',
'test:e2e',
'test:e2e:dev',
],
},
],
},
};
const jsonPatterns = [
'**/*.json',
];
const pluginJSONC: Linter.Config[] = [
...uncustomizedPluginJSONC.configs['flat/recommended-with-json'],
{
name : 'amd-shark-ui/jsonc/ignore-generated',
ignores: [
'**/package-lock.json',
'**/coverage/**',
'**/.vite/**',
],
},
{
name : 'amd-shark-ui/jsonc/rules',
files: jsonPatterns,
rules: {
'jsonc/array-bracket-newline': [
'error',
{
minItems: 1,
}, // Mirrors configuration specified in "eslint.stylistic.ts"
],
'jsonc/array-element-newline': [
'error',
{
minItems: 1,
}, // Mirrors configuration specified in "eslint.stylistic.ts"
],
'jsonc/indent': [
'error',
2,
],
},
},
rulesForPackageJSON,
];
export {
pluginJSONC as default,
jsonPatterns,
};