@form8ion/eslint-config 2.0.1 → 2.0.4
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/README.md +3 -0
- package/package.json +10 -5
package/README.md
CHANGED
|
@@ -44,6 +44,7 @@ more strict and to make some enforce a different convention.
|
|
|
44
44
|
|
|
45
45
|
[![npm][npm-badge]][npm-link]
|
|
46
46
|
[![MIT license][license-badge]][license-link]
|
|
47
|
+
![node][node-badge]
|
|
47
48
|
|
|
48
49
|
<!--consumer-badges end -->
|
|
49
50
|
|
|
@@ -154,3 +155,5 @@ $ npm test
|
|
|
154
155
|
[github-actions-ci-link]: https://github.com/form8ion/eslint-config/actions?query=workflow%3A%22Node.js+CI%22+branch%3Amaster
|
|
155
156
|
|
|
156
157
|
[github-actions-ci-badge]: https://github.com/form8ion/eslint-config/workflows/Node.js%20CI/badge.svg
|
|
158
|
+
|
|
159
|
+
[node-badge]: https://img.shields.io/node/v/@form8ion/eslint-config?logo=node.js
|
package/package.json
CHANGED
|
@@ -2,11 +2,14 @@
|
|
|
2
2
|
"name": "@form8ion/eslint-config",
|
|
3
3
|
"description": "shareable configuration for ESLint",
|
|
4
4
|
"license": "MIT",
|
|
5
|
-
"version": "2.0.
|
|
5
|
+
"version": "2.0.4",
|
|
6
6
|
"sideEffects": false,
|
|
7
7
|
"files": [
|
|
8
8
|
"index.js"
|
|
9
9
|
],
|
|
10
|
+
"engines": {
|
|
11
|
+
"node": ">=12.20"
|
|
12
|
+
},
|
|
10
13
|
"publishConfig": {
|
|
11
14
|
"access": "public"
|
|
12
15
|
},
|
|
@@ -20,24 +23,26 @@
|
|
|
20
23
|
"lint:md": "remark . --frail",
|
|
21
24
|
"lint:sensitive": "ban",
|
|
22
25
|
"lint:peer": "npm ls >/dev/null",
|
|
26
|
+
"lint:engines": "ls-engines",
|
|
23
27
|
"generate:md": "remark . --output",
|
|
24
28
|
"prepare": "husky install"
|
|
25
29
|
},
|
|
26
30
|
"devDependencies": {
|
|
27
|
-
"@form8ion/commitlint-config": "1.0.
|
|
31
|
+
"@form8ion/commitlint-config": "1.0.30",
|
|
28
32
|
"@form8ion/remark-lint-preset": "2.1.7",
|
|
29
|
-
"ban-sensitive-files": "1.9.
|
|
33
|
+
"ban-sensitive-files": "1.9.18",
|
|
30
34
|
"cz-conventional-changelog": "3.3.0",
|
|
31
35
|
"husky": "7.0.4",
|
|
36
|
+
"ls-engines": "0.6.5",
|
|
32
37
|
"npm-run-all": "4.1.5",
|
|
33
38
|
"remark-cli": "10.0.1",
|
|
34
39
|
"remark-toc": "8.0.1"
|
|
35
40
|
},
|
|
36
41
|
"dependencies": {
|
|
37
|
-
"eslint": "
|
|
42
|
+
"eslint": "7.32.0",
|
|
38
43
|
"eslint-config-airbnb-base": "15.0.0",
|
|
39
44
|
"eslint-plugin-eslint-comments": "3.2.0",
|
|
40
45
|
"eslint-plugin-filenames": "1.3.2",
|
|
41
|
-
"eslint-plugin-import": "2.
|
|
46
|
+
"eslint-plugin-import": "2.26.0"
|
|
42
47
|
}
|
|
43
48
|
}
|