@mikey-pro/eslint-config 6.0.2 → 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.
Files changed (2) hide show
  1. package/index.js +1 -0
  2. package/package.json +9 -3
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' }],
package/package.json CHANGED
@@ -1,9 +1,13 @@
1
1
  {
2
2
  "name": "@mikey-pro/eslint-config",
3
- "version": "6.0.2",
3
+ "version": "6.0.3",
4
4
  "description": "Mikey Pro ESLint configuration",
5
5
  "main": "index.js",
6
- "files": ["index.js", "README.md", "LICENSE"],
6
+ "files": [
7
+ "index.js",
8
+ "README.md",
9
+ "LICENSE"
10
+ ],
7
11
  "license": "MIT",
8
12
  "repository": {
9
13
  "type": "git",
@@ -28,5 +32,7 @@
28
32
  "style",
29
33
  "guide"
30
34
  ],
31
- "browserslist": ["defaults"]
35
+ "browserslist": [
36
+ "defaults"
37
+ ]
32
38
  }