@studio/eslint-config 2.2.0 → 2.3.0
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/CHANGES.md +13 -0
- package/package.json +5 -3
package/CHANGES.md
CHANGED
|
@@ -1,5 +1,18 @@
|
|
|
1
1
|
# Changes
|
|
2
2
|
|
|
3
|
+
## 2.3.0
|
|
4
|
+
|
|
5
|
+
- 🍏 [`bed55ec`](https://github.com/javascript-studio/eslint-config/commit/bed55ec462bab33db91990721e69201b00c598b6)
|
|
6
|
+
Allow eslint-plugin-mocha ^10
|
|
7
|
+
- 🍏 [`361aeee`](https://github.com/javascript-studio/eslint-config/commit/361aeee06d6f2bb3e86fad0c5477a30d21ddb21c)
|
|
8
|
+
Support eslint 8
|
|
9
|
+
- 🛡 [`28d99ca`](https://github.com/javascript-studio/eslint-config/commit/28d99ca887617c33f82e19370a5904a24f086608)
|
|
10
|
+
npm audit
|
|
11
|
+
- ✨ [`41e0198`](https://github.com/javascript-studio/eslint-config/commit/41e01980b22034569bac376808a20ba604f4f90b)
|
|
12
|
+
Add test script to lint the linter config
|
|
13
|
+
|
|
14
|
+
_Released by [Maximilian Antoni](https://github.com/mantoni) on 2022-01-05._
|
|
15
|
+
|
|
3
16
|
## 2.2.0
|
|
4
17
|
|
|
5
18
|
- 🍏 [`c4a37e7`](https://github.com/javascript-studio/eslint-config/commit/c4a37e7ed4743d91de1f0fb7386917fa66351b82)
|
package/package.json
CHANGED
|
@@ -1,11 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@studio/eslint-config",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.3.0",
|
|
4
4
|
"description": "The JavaScript Studio sharable eslint config",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"author": "Maximilian Antoni <max@javascript.studio>",
|
|
7
7
|
"homepage": "https://github.com/javascript-studio/eslint-config",
|
|
8
8
|
"scripts": {
|
|
9
|
+
"test": "eslint --config index.js index.js",
|
|
10
|
+
"preversion": "npm test",
|
|
9
11
|
"version": "changes --commits --footer",
|
|
10
12
|
"postversion": "git push --follow-tags && npm publish"
|
|
11
13
|
},
|
|
@@ -13,8 +15,8 @@
|
|
|
13
15
|
"@studio/changes": "^2.2.0"
|
|
14
16
|
},
|
|
15
17
|
"peerDependencies": {
|
|
16
|
-
"eslint": "^7",
|
|
17
|
-
"eslint-plugin-mocha": "^8 || ^9",
|
|
18
|
+
"eslint": "^7 || ^8",
|
|
19
|
+
"eslint-plugin-mocha": "^8 || ^9 || ^10",
|
|
18
20
|
"eslint-plugin-node": "^11"
|
|
19
21
|
},
|
|
20
22
|
"repository": {
|