@nextcloud/eslint-config 6.1.0 → 6.1.1

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/CHANGELOG.md +8 -0
  2. package/index.js +1 -5
  3. package/package.json +51 -47
package/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Changelog
2
2
 
3
+ ## [v6.1.1](https://github.com/nextcloud/eslint-config/tree/v6.1.1) (2021-12-02)
4
+
5
+ [Full Changelog](https://github.com/nextcloud/eslint-config/compare/v6.1.0...v6.1.1)
6
+
7
+ **Fixes:**
8
+
9
+ - Disable tag rule [\#248](https://github.com/nextcloud/eslint-config/pull/248) ([skjnldsv](https://github.com/skjnldsv))
10
+
3
11
  ## [v6.1.0](https://github.com/nextcloud/eslint-config/tree/v6.1.0) (2021-08-11)
4
12
 
5
13
  [Full Changelog](https://github.com/nextcloud/eslint-config/compare/v6.0.1...v6.1.0)
package/index.js CHANGED
@@ -62,11 +62,7 @@ module.exports = {
62
62
  // force proper JSDocs
63
63
  'jsdoc/require-returns': 0,
64
64
  'jsdoc/require-returns-description': 0,
65
- 'jsdoc/tag-lines': ['warn', 'never', { count: 0, tags: {
66
- copyright: { count: 1, lines: 'always' },
67
- author: { count: 1, lines: 'always' },
68
- license: { count: 1, lines: 'always' },
69
- }}],
65
+ 'jsdoc/tag-lines': ['off'],
70
66
  // disallow use of "var"
71
67
  'no-var': 'error',
72
68
  // suggest using const
package/package.json CHANGED
@@ -1,49 +1,53 @@
1
1
  {
2
- "name": "@nextcloud/eslint-config",
3
- "version": "6.1.0",
4
- "description": "Eslint shared config for nextcloud vue.js apps",
5
- "main": "index.js",
6
- "repository": {
7
- "type": "git",
8
- "url": "git+https://github.com/nextcloud/eslint-config.git"
9
- },
10
- "peerDependencies": {
11
- "@babel/core": "^7.13.10",
12
- "@babel/eslint-parser": "^7.13.10",
13
- "@nextcloud/eslint-plugin": "^2.0.0",
14
- "eslint": "^7.13.0",
15
- "eslint-config-standard": "^16.0.1",
16
- "eslint-plugin-import": "^2.22.1",
17
- "eslint-plugin-jsdoc": "^36.0.4",
18
- "eslint-plugin-node": "^11.1.0",
19
- "eslint-plugin-promise": "^5.1.0",
20
- "eslint-plugin-vue": "^7.15.0",
21
- "webpack": "^5.4.0"
22
- },
23
- "devDependencies": {
24
- "@babel/core": "^7.13.10",
25
- "@babel/eslint-parser": "^7.13.10",
26
- "@nextcloud/eslint-plugin": "^2.0.0",
27
- "eslint": "^7.13.0",
28
- "eslint-config-standard": "^16.0.1",
29
- "eslint-plugin-import": "^2.22.1",
30
- "eslint-plugin-jsdoc": "^36.0.4",
31
- "eslint-plugin-node": "^11.1.0",
32
- "eslint-plugin-promise": "^5.1.0",
33
- "eslint-plugin-vue": "^7.1.0",
34
- "webpack": "^5.4.0"
35
- },
36
- "keywords": [
37
- "eslint",
38
- "vue",
39
- "vuejs",
40
- "config",
41
- "nextcloud"
42
- ],
43
- "author": "John Molakvoæ <skjnldsv@protonmail.com>",
44
- "license": "AGPL-3.0-or-later",
45
- "bugs": {
46
- "url": "https://github.com/nextcloud/eslint-config/issues"
47
- },
48
- "homepage": "https://github.com/nextcloud/eslint-config#readme"
2
+ "name": "@nextcloud/eslint-config",
3
+ "version": "6.1.1",
4
+ "description": "Eslint shared config for nextcloud vue.js apps",
5
+ "main": "index.js",
6
+ "repository": {
7
+ "type": "git",
8
+ "url": "git+https://github.com/nextcloud/eslint-config.git"
9
+ },
10
+ "peerDependencies": {
11
+ "@babel/core": "^7.13.10",
12
+ "@babel/eslint-parser": "^7.13.10",
13
+ "@nextcloud/eslint-plugin": "^2.0.0",
14
+ "eslint": "^7.13.0",
15
+ "eslint-config-standard": "^16.0.1",
16
+ "eslint-plugin-import": "^2.22.1",
17
+ "eslint-plugin-jsdoc": "^37.0.3",
18
+ "eslint-plugin-node": "^11.1.0",
19
+ "eslint-plugin-promise": "^5.1.0",
20
+ "eslint-plugin-vue": "^7.15.0",
21
+ "webpack": "^5.4.0"
22
+ },
23
+ "devDependencies": {
24
+ "@babel/core": "^7.13.10",
25
+ "@babel/eslint-parser": "^7.13.10",
26
+ "@nextcloud/eslint-plugin": "^2.0.0",
27
+ "eslint": "^7.13.0",
28
+ "eslint-config-standard": "^16.0.1",
29
+ "eslint-plugin-import": "^2.22.1",
30
+ "eslint-plugin-jsdoc": "^37.0.3",
31
+ "eslint-plugin-node": "^11.1.0",
32
+ "eslint-plugin-promise": "^5.1.0",
33
+ "eslint-plugin-vue": "^7.1.0",
34
+ "webpack": "^5.4.0"
35
+ },
36
+ "keywords": [
37
+ "eslint",
38
+ "vue",
39
+ "vuejs",
40
+ "config",
41
+ "nextcloud"
42
+ ],
43
+ "author": "John Molakvoæ <skjnldsv@protonmail.com>",
44
+ "license": "AGPL-3.0-or-later",
45
+ "bugs": {
46
+ "url": "https://github.com/nextcloud/eslint-config/issues"
47
+ },
48
+ "homepage": "https://github.com/nextcloud/eslint-config#readme",
49
+ "engines": {
50
+ "node": "^14.0.0",
51
+ "npm": "^7.0.0"
52
+ }
49
53
  }