-
Notifications
You must be signed in to change notification settings - Fork 0
/
eslint.config.ts
57 lines (49 loc) · 1.15 KB
/
eslint.config.ts
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
import { ajiu9 } from './src'
// export default ajiu9({},{
// ignores: [
// 'fixtures',
// '_fixtures',
// ],
// },
// {
// files: ['src/**/*.ts'],
// rules: {
// 'perfectionist/sort-objects': 'error',
// },
// }
// )
export default ajiu9({
ignores: [
'fixtures',
'_fixtures',
'packages',
],
}, {
files: ['src/**/*.ts'],
rules: {
'perfectionist/sort-objects': 'error',
},
})
// const configs = await ajiu9({})
// var a;
// // eslint-disable-next-line no-console
// // console.dir(config, { depth: 5});
// function replacer(key, value, seenObjects = new WeakSet()) {
// if (typeof value === 'function') {
// // 过滤掉函数
// return undefined;
// }
// if (typeof value === 'object' && value !== null) {
// if (seenObjects.has(value)) {
// // 已经处理过的对象,跳过
// return undefined;
// }
// seenObjects.add(value);
// if (value instanceof Map || value instanceof Set) {
// return Array.from(value);
// }
// }
// return value;
// }
// const jsonString = JSON.stringify(configs, replacer, 2);
// await fs.writeFile('./eslint.json', jsonString, 'utf-8');