File tree 4 files changed +245
-72
lines changed
4 files changed +245
-72
lines changed Original file line number Diff line number Diff line change @@ -3,3 +3,4 @@ coverage/
3
3
4
4
logo.svg
5
5
AUTHORS
6
+ eslint.config.mjs
Original file line number Diff line number Diff line change
1
+ import loguxConfig from '@logux/eslint-config'
2
+
3
+ export default [
4
+ {
5
+ ignores : [ 'coverage' ]
6
+ } ,
7
+ ...loguxConfig ,
8
+ {
9
+ rules : {
10
+ 'no-console' : 'off' ,
11
+ 'node-import/prefer-node-protocol' : 'off'
12
+ }
13
+ } ,
14
+ {
15
+ files : [ 'bin/autoprefixer' ] ,
16
+ rules : {
17
+ 'n/global-require' : 'off'
18
+ }
19
+ } ,
20
+ {
21
+ files : [ 'data/prefixes.js' ] ,
22
+ rules : {
23
+ 'import/order' : 'off'
24
+ }
25
+ }
26
+ ]
Original file line number Diff line number Diff line change 54
54
"postcss-value-parser" : " ^4.2.0"
55
55
},
56
56
"devDependencies" : {
57
- "@logux/eslint-config" : " ^52 .0.2 " ,
57
+ "@logux/eslint-config" : " ^53 .0.0 " ,
58
58
"@size-limit/preset-small-lib" : " 11.1.1" ,
59
59
"c8" : " ^9.1.0" ,
60
60
"clean-publish" : " ^4.3.0" ,
61
61
"eslint" : " ^8.57.0" ,
62
- "eslint-config-standard" : " ^17.1.0" ,
63
- "eslint-plugin-import" : " ^2.29.1" ,
64
- "eslint-plugin-n" : " ^16.6.2" ,
65
- "eslint-plugin-node-import" : " ^1.0.4" ,
66
- "eslint-plugin-perfectionist" : " ^2.7.0" ,
67
- "eslint-plugin-prefer-let" : " ^3.0.1" ,
68
- "eslint-plugin-promise" : " ^6.1.1" ,
69
62
"nanospy" : " ^1.0.0" ,
70
63
"postcss" : " ^8.4.37" ,
71
64
"size-limit" : " ^11.1.1" ,
84
77
"limit" : " 50 KB"
85
78
}
86
79
],
87
- "eslintConfig" : {
88
- "extends" : " @logux/eslint-config" ,
89
- "rules" : {
90
- "node-import/prefer-node-protocol" : " off" ,
91
- "no-console" : " off"
92
- },
93
- "overrides" : [
94
- {
95
- "files" : [
96
- " bin/autoprefixer"
97
- ],
98
- "rules" : {
99
- "n/global-require" : " off"
100
- }
101
- },
102
- {
103
- "files" : [
104
- " data/prefixes.js"
105
- ],
106
- "rules" : {
107
- "import/order" : " off"
108
- }
109
- }
110
- ]
111
- },
112
80
"c8" : {
113
81
"exclude" : [
114
82
" test/*"
You can’t perform that action at this time.
0 commit comments