@studio/eslint-config 4.1.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.
Files changed (3) hide show
  1. package/CHANGES.md +16 -0
  2. package/index.js +1 -0
  3. package/package.json +3 -3
package/CHANGES.md CHANGED
@@ -1,5 +1,21 @@
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
+
12
+ ## 5.0.0
13
+
14
+ - 🍏 [`0a58718`](https://github.com/javascript-studio/eslint-config/commit/0a58718ebd1dc186a0282f81999179f3f57dca9a)
15
+ Upgrade eslint plugins
16
+
17
+ _Released by [Maximilian Antoni](https://github.com/mantoni) on 2023-05-31._
18
+
3
19
  ## 4.1.0
4
20
 
5
21
  - 🍏 [`cb6fd08`](https://github.com/javascript-studio/eslint-config/commit/cb6fd08cd09fc49450a1a67ac417773ca49628f8)
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": "4.1.0",
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,9 +16,9 @@
16
16
  },
17
17
  "peerDependencies": {
18
18
  "eslint": "^8",
19
- "eslint-plugin-jsdoc": "^39 || ^40",
19
+ "eslint-plugin-jsdoc": "^46",
20
20
  "eslint-plugin-mocha": "^10",
21
- "eslint-plugin-n": "^15",
21
+ "eslint-plugin-n": "^16",
22
22
  "jsdoc": "^4"
23
23
  },
24
24
  "repository": {