@studio/eslint-config 3.0.1 → 4.0.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 +20 -0
- package/index.js +2 -1
- package/package.json +4 -4
package/CHANGES.md
CHANGED
|
@@ -1,5 +1,25 @@
|
|
|
1
1
|
# Changes
|
|
2
2
|
|
|
3
|
+
## 4.0.0
|
|
4
|
+
|
|
5
|
+
- 💥 [`e92eb78`](https://github.com/javascript-studio/eslint-config/commit/e92eb785da9f5b7c3febd8860ffda05c449936e1)
|
|
6
|
+
Set env to es2022
|
|
7
|
+
- 💥 [`e33122e`](https://github.com/javascript-studio/eslint-config/commit/e33122ede785e5de8d89e6dd192988c174b062da)
|
|
8
|
+
Require eslint 8 and jsdoc 4
|
|
9
|
+
- ✨ [`3daa57b`](https://github.com/javascript-studio/eslint-config/commit/3daa57bcbf37f8e408beea67e568f42ddf0f10ca)
|
|
10
|
+
Reinstall dependencies
|
|
11
|
+
|
|
12
|
+
_Released by [Maximilian Antoni](https://github.com/mantoni) on 2023-01-19._
|
|
13
|
+
|
|
14
|
+
## 3.1.0
|
|
15
|
+
|
|
16
|
+
- 🍏 [`2125d01`](https://github.com/javascript-studio/eslint-config/commit/2125d01b1d80fdba2309723c1dca980be6a3a774)
|
|
17
|
+
Declare compatibility with jsdoc 4
|
|
18
|
+
- 🛡️ [`19cb915`](https://github.com/javascript-studio/eslint-config/commit/19cb915a5149802b76cf984190254c2d03bd7a8f)
|
|
19
|
+
Bump minimatch from 3.0.4 to 3.1.2 (dependabot[bot])
|
|
20
|
+
|
|
21
|
+
_Released by [Maximilian Antoni](https://github.com/mantoni) on 2022-11-17._
|
|
22
|
+
|
|
3
23
|
## 3.0.1
|
|
4
24
|
|
|
5
25
|
- 🐛 [`93a45e2`](https://github.com/javascript-studio/eslint-config/commit/93a45e2eb5022e6259daf0cb62905250076fb662)
|
package/index.js
CHANGED
|
@@ -11,7 +11,7 @@ module.exports = {
|
|
|
11
11
|
|
|
12
12
|
env: {
|
|
13
13
|
node: true,
|
|
14
|
-
|
|
14
|
+
es2022: true
|
|
15
15
|
},
|
|
16
16
|
|
|
17
17
|
plugins: [
|
|
@@ -80,6 +80,7 @@ module.exports = {
|
|
|
80
80
|
'node/prefer-global/url': 2,
|
|
81
81
|
// node default tweaks
|
|
82
82
|
'node/no-unpublished-require': 0, // fails for @sinonjs/referee-sinon
|
|
83
|
+
'node/no-unpublished-import': 0, // fails for commander and some @studio projects
|
|
83
84
|
'node/no-missing-require': [2, {
|
|
84
85
|
'tryExtensions': ['.js', '.json']
|
|
85
86
|
}],
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@studio/eslint-config",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "4.0.0",
|
|
4
4
|
"description": "The JavaScript Studio sharable eslint config",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"author": "Maximilian Antoni <max@javascript.studio>",
|
|
@@ -15,11 +15,11 @@
|
|
|
15
15
|
"@studio/changes": "^2.2.0"
|
|
16
16
|
},
|
|
17
17
|
"peerDependencies": {
|
|
18
|
-
"eslint": "^
|
|
18
|
+
"eslint": "^8",
|
|
19
19
|
"eslint-plugin-jsdoc": "^39",
|
|
20
|
-
"eslint-plugin-mocha": "^
|
|
20
|
+
"eslint-plugin-mocha": "^10",
|
|
21
21
|
"eslint-plugin-node": "^11",
|
|
22
|
-
"jsdoc": "^
|
|
22
|
+
"jsdoc": "^4"
|
|
23
23
|
},
|
|
24
24
|
"repository": {
|
|
25
25
|
"type": "git",
|