@mikey-pro/eslint-config 6.1.0 → 6.1.1

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 (3) hide show
  1. package/README.md +4 -2
  2. package/index.js +6 -6
  3. package/package.json +2 -2
package/README.md CHANGED
@@ -1,12 +1,14 @@
1
1
  <div width="100%" align="center">
2
2
  <h1>
3
- <b>Mikey Pro</b>
3
+ <a href="https://github.com/chiefmikey/mikey-pro">
4
+ <b>Mikey Pro</b>
5
+ </a>
4
6
  </h1>
5
7
  </div>
6
8
 
7
9
  ## **@mikey-pro/eslint-config**
8
10
 
9
- _A preset ESLint configuration_
11
+ A preset ESLint configuration
10
12
 
11
13
  ## Usage
12
14
 
package/index.js CHANGED
@@ -18,14 +18,13 @@ module.exports = {
18
18
  ],
19
19
  ignorePatterns: [
20
20
  '!.*',
21
- 'node_modules',
22
- 'vendor',
23
- 'dist',
21
+ '**/.vscode/**',
22
+ '**/.github/**',
23
+ '**/node_modules/**',
24
+ '**/dist/**',
25
+ '**/vendor/**',
24
26
  'package-lock.json',
25
27
  'LICENSE',
26
- '.vscode',
27
- '.github',
28
- 'tsconfig.json',
29
28
  '.env',
30
29
  ],
31
30
  overrides: [
@@ -96,6 +95,7 @@ module.exports = {
96
95
  extends: ['plugin:markdownlint/recommended'],
97
96
  parser: 'eslint-plugin-markdownlint/parser',
98
97
  rules: {
98
+ 'markdownlint/MD033': 0,
99
99
  'prettier/prettier': [1, { parser: 'markdown' }],
100
100
  },
101
101
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mikey-pro/eslint-config",
3
- "version": "6.1.0",
3
+ "version": "6.1.1",
4
4
  "description": "Mikey Pro ESLint configuration",
5
5
  "main": "index.js",
6
6
  "files": [
@@ -16,7 +16,6 @@
16
16
  "bugs": {
17
17
  "url": "https://github.com/chiefmikey/mikey-pro/issues"
18
18
  },
19
- "author": "Mikl Wolfe <wolfe@mikl.io> (https://mikl.io)",
20
19
  "license": "MIT",
21
20
  "keywords": [
22
21
  "@mikey-pro/eslint-config",
@@ -32,6 +31,7 @@
32
31
  "style",
33
32
  "guide"
34
33
  ],
34
+ "author": "Mikl Wolfe <wolfe@mikl.io> (https://mikl.io)",
35
35
  "browserslist": [
36
36
  "defaults"
37
37
  ]