@mikey-pro/eslint-config 6.1.3 → 6.1.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 +4 -20
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -17,28 +17,11 @@ module.exports = {
|
|
|
17
17
|
'plugin:prettier/recommended',
|
|
18
18
|
],
|
|
19
19
|
ignorePatterns: [
|
|
20
|
-
'
|
|
21
|
-
'**/.git/**/*',
|
|
22
|
-
'**/.vscode/**/*',
|
|
23
|
-
'**/.github/**/*',
|
|
24
|
-
'**/node_modules/**/*',
|
|
25
|
-
'**/dist/**/*',
|
|
26
|
-
'**/vendor/**/*',
|
|
27
|
-
'*.svg',
|
|
28
|
-
'*.png',
|
|
29
|
-
'*.aco',
|
|
30
|
-
'*.psd',
|
|
31
|
-
'*.ai',
|
|
32
|
-
'*.ase',
|
|
33
|
-
'*.cclibs',
|
|
34
|
-
'*.cclibs',
|
|
35
|
-
'.DS_Store',
|
|
36
|
-
'.env',
|
|
37
|
-
'.npmrc',
|
|
38
|
-
'.gitignore',
|
|
20
|
+
'!package.json',
|
|
39
21
|
'package-lock.json',
|
|
40
22
|
'LICENSE',
|
|
41
|
-
'
|
|
23
|
+
'**/dist/**/*',
|
|
24
|
+
'**/vendor/**/*',
|
|
42
25
|
],
|
|
43
26
|
overrides: [
|
|
44
27
|
{
|
|
@@ -109,6 +92,7 @@ module.exports = {
|
|
|
109
92
|
extends: ['plugin:markdownlint/recommended'],
|
|
110
93
|
rules: {
|
|
111
94
|
'markdownlint/md033': 0,
|
|
95
|
+
'markdownlint/md041': 0,
|
|
112
96
|
'prettier/prettier': [1, { parser: 'markdown' }],
|
|
113
97
|
},
|
|
114
98
|
},
|