@mikey-pro/eslint-config 6.0.0 → 6.0.3
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 +3 -1
- package/package.json +1 -4
package/index.js
CHANGED
|
@@ -190,6 +190,7 @@ module.exports = {
|
|
|
190
190
|
{
|
|
191
191
|
extends: ['plugin:jsonc/recommended-with-jsonc'],
|
|
192
192
|
files: ['*.json', '*.jsonc', '*rc'],
|
|
193
|
+
ignorePatterns: ['**/package.json'],
|
|
193
194
|
parser: 'jsonc-eslint-parser',
|
|
194
195
|
rules: {
|
|
195
196
|
'prettier/prettier': [1, { parser: 'json' }],
|
|
@@ -236,6 +237,7 @@ module.exports = {
|
|
|
236
237
|
'unicorn',
|
|
237
238
|
'sonarjs',
|
|
238
239
|
'only-warn',
|
|
240
|
+
'@cypress/json',
|
|
239
241
|
],
|
|
240
242
|
root: true,
|
|
241
243
|
rules: {
|
|
@@ -432,10 +434,10 @@ module.exports = {
|
|
|
432
434
|
'valid-jsdoc': 0,
|
|
433
435
|
},
|
|
434
436
|
settings: {
|
|
435
|
-
'json/sort-package-json': 'pro',
|
|
436
437
|
polyfills: ['Promise'],
|
|
437
438
|
react: {
|
|
438
439
|
version: 'detect',
|
|
439
440
|
},
|
|
441
|
+
'json/json-with-comments-files': [],
|
|
440
442
|
},
|
|
441
443
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mikey-pro/eslint-config",
|
|
3
|
-
"version": "6.0.
|
|
3
|
+
"version": "6.0.3",
|
|
4
4
|
"description": "Mikey Pro ESLint configuration",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"files": [
|
|
@@ -32,9 +32,6 @@
|
|
|
32
32
|
"style",
|
|
33
33
|
"guide"
|
|
34
34
|
],
|
|
35
|
-
"contributors": [
|
|
36
|
-
"Mikl Wolfe <wolfe@mikl.io> (https://mikl.io)"
|
|
37
|
-
],
|
|
38
35
|
"browserslist": [
|
|
39
36
|
"defaults"
|
|
40
37
|
]
|