@mikey-pro/eslint-config 7.0.4 → 7.0.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/index.js +37 -29
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -114,6 +114,43 @@ module.exports = {
|
|
|
114
114
|
'prettier/prettier': [1, { parser: 'markdown' }],
|
|
115
115
|
},
|
|
116
116
|
},
|
|
117
|
+
{
|
|
118
|
+
files: ['package.json'],
|
|
119
|
+
rules: {
|
|
120
|
+
'prettier/prettier': [1, { parser: 'json' }],
|
|
121
|
+
},
|
|
122
|
+
settings: {
|
|
123
|
+
'json/json-with-comments-files': [],
|
|
124
|
+
'json/package-json-sort-order': [
|
|
125
|
+
'name',
|
|
126
|
+
'version',
|
|
127
|
+
'description',
|
|
128
|
+
'private',
|
|
129
|
+
'main',
|
|
130
|
+
'type',
|
|
131
|
+
'types',
|
|
132
|
+
'typings',
|
|
133
|
+
'browser',
|
|
134
|
+
'engines',
|
|
135
|
+
'scripts',
|
|
136
|
+
'husky',
|
|
137
|
+
'dependencies',
|
|
138
|
+
'devDependencies',
|
|
139
|
+
'peerDependencies',
|
|
140
|
+
'files',
|
|
141
|
+
'bin',
|
|
142
|
+
'productName',
|
|
143
|
+
'homepage',
|
|
144
|
+
'repository',
|
|
145
|
+
'bugs',
|
|
146
|
+
'license',
|
|
147
|
+
'keywords',
|
|
148
|
+
'author',
|
|
149
|
+
'contributors',
|
|
150
|
+
'funding',
|
|
151
|
+
],
|
|
152
|
+
},
|
|
153
|
+
},
|
|
117
154
|
{
|
|
118
155
|
files: ['*.md.json'],
|
|
119
156
|
rules: {
|
|
@@ -360,34 +397,5 @@ module.exports = {
|
|
|
360
397
|
jest: {
|
|
361
398
|
version: 29,
|
|
362
399
|
},
|
|
363
|
-
'json/json-with-comments-files': [],
|
|
364
|
-
'json/package-json-sort-order': [
|
|
365
|
-
'name',
|
|
366
|
-
'version',
|
|
367
|
-
'description',
|
|
368
|
-
'private',
|
|
369
|
-
'main',
|
|
370
|
-
'type',
|
|
371
|
-
'types',
|
|
372
|
-
'typings',
|
|
373
|
-
'browser',
|
|
374
|
-
'engines',
|
|
375
|
-
'scripts',
|
|
376
|
-
'husky',
|
|
377
|
-
'dependencies',
|
|
378
|
-
'devDependencies',
|
|
379
|
-
'peerDependencies',
|
|
380
|
-
'files',
|
|
381
|
-
'bin',
|
|
382
|
-
'productName',
|
|
383
|
-
'homepage',
|
|
384
|
-
'repository',
|
|
385
|
-
'bugs',
|
|
386
|
-
'license',
|
|
387
|
-
'keywords',
|
|
388
|
-
'author',
|
|
389
|
-
'contributors',
|
|
390
|
-
'funding',
|
|
391
|
-
],
|
|
392
400
|
},
|
|
393
401
|
};
|