@studio/eslint-config 5.0.0 → 6.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 +10 -1
- package/index.js +1 -0
- package/package.json +2 -2
package/CHANGES.md
CHANGED
|
@@ -1,8 +1,17 @@
|
|
|
1
1
|
# Changes
|
|
2
2
|
|
|
3
|
+
## 6.0.0
|
|
4
|
+
|
|
5
|
+
- 💄 [`31acb03`](https://github.com/javascript-studio/eslint-config/commit/31acb035ec51089223407fad1823de438ddab2ea)
|
|
6
|
+
Require blank line between jsdoc comment and tags
|
|
7
|
+
- 🍏 [`d9db688`](https://github.com/javascript-studio/eslint-config/commit/d9db688c7b10fe1e245d38ccc6506bbcaa84457a)
|
|
8
|
+
Upgrade eslint-plugin-jsdoc
|
|
9
|
+
|
|
10
|
+
_Released by [Maximilian Antoni](https://github.com/mantoni) on 2023-06-24._
|
|
11
|
+
|
|
3
12
|
## 5.0.0
|
|
4
13
|
|
|
5
|
-
- [`0a58718`](https://github.com/javascript-studio/eslint-config/commit/0a58718ebd1dc186a0282f81999179f3f57dca9a)
|
|
14
|
+
- 🍏 [`0a58718`](https://github.com/javascript-studio/eslint-config/commit/0a58718ebd1dc186a0282f81999179f3f57dca9a)
|
|
6
15
|
Upgrade eslint plugins
|
|
7
16
|
|
|
8
17
|
_Released by [Maximilian Antoni](https://github.com/mantoni) on 2023-05-31._
|
package/index.js
CHANGED
|
@@ -67,6 +67,7 @@ module.exports = {
|
|
|
67
67
|
'jsdoc/check-indentation': 'warn',
|
|
68
68
|
'jsdoc/check-line-alignment': 'warn',
|
|
69
69
|
'jsdoc/require-hyphen-before-param-description': 'warn',
|
|
70
|
+
'jsdoc/tag-lines': ['warn', 'never', { 'startLines': 1 }],
|
|
70
71
|
|
|
71
72
|
// https://github.com/eslint-community/eslint-plugin-n
|
|
72
73
|
'n/handle-callback-err': 2,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@studio/eslint-config",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "6.0.0",
|
|
4
4
|
"description": "The JavaScript Studio sharable eslint config",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"author": "Maximilian Antoni <max@javascript.studio>",
|
|
@@ -16,7 +16,7 @@
|
|
|
16
16
|
},
|
|
17
17
|
"peerDependencies": {
|
|
18
18
|
"eslint": "^8",
|
|
19
|
-
"eslint-plugin-jsdoc": "^
|
|
19
|
+
"eslint-plugin-jsdoc": "^46",
|
|
20
20
|
"eslint-plugin-mocha": "^10",
|
|
21
21
|
"eslint-plugin-n": "^16",
|
|
22
22
|
"jsdoc": "^4"
|