@nextcloud/eslint-config 7.0.2 → 8.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.
- package/CHANGELOG.md +21 -0
- package/index.js +5 -1
- package/package.json +51 -51
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,26 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [v8.1.0](https://github.com/nextcloud/eslint-config/tree/v8.0.0) (PENDING)
|
|
4
|
+
|
|
5
|
+
[Full Changelog](https://github.com/nextcloud/eslint-config/compare/v8.0.0...v8.1.0)
|
|
6
|
+
|
|
7
|
+
**Dependency updates:**
|
|
8
|
+
|
|
9
|
+
- Use [`eslint-plugin-n`](https://www.npmjs.com/package/eslint-plugin-n) instead of [`eslint-plugin-node`](https://www.npmjs.com/package/eslint-plugin-node)
|
|
10
|
+
|
|
11
|
+
## [v8.0.0](https://github.com/nextcloud/eslint-config/tree/v8.0.0) (2022-04-20)
|
|
12
|
+
|
|
13
|
+
[Full Changelog](https://github.com/nextcloud/eslint-config/compare/v7.0.2...v8.0.0)
|
|
14
|
+
|
|
15
|
+
**Breaking:**
|
|
16
|
+
|
|
17
|
+
- Require file extensions on import [\#292](https://github.com/nextcloud/eslint-config/pull/292) ([Pytal](https://github.com/Pytal))
|
|
18
|
+
|
|
19
|
+
**Dependency updates:**
|
|
20
|
+
|
|
21
|
+
- Bump eslint from 8.7.0 to 8.8.0 [\#282](https://github.com/nextcloud/eslint-config/pull/282) ([dependabot[bot]](https://github.com/apps/dependabot))
|
|
22
|
+
- Bump eslint from 8.8.0 to 8.9.0 [\#296](https://github.com/nextcloud/eslint-config/pull/296) ([dependabot[bot]](https://github.com/apps/dependabot))
|
|
23
|
+
|
|
3
24
|
## [v7.0.2](https://github.com/nextcloud/eslint-config/tree/v7.0.2) (2022-01-20)
|
|
4
25
|
|
|
5
26
|
[Full Changelog](https://github.com/nextcloud/eslint-config/compare/v7.0.1...v7.0.2)
|
package/index.js
CHANGED
|
@@ -16,7 +16,7 @@ module.exports = {
|
|
|
16
16
|
'eslint:recommended',
|
|
17
17
|
'plugin:import/errors',
|
|
18
18
|
'plugin:import/warnings',
|
|
19
|
-
'plugin:
|
|
19
|
+
'plugin:n/recommended',
|
|
20
20
|
'plugin:vue/recommended',
|
|
21
21
|
'plugin:@nextcloud/recommended',
|
|
22
22
|
'plugin:jsdoc/recommended',
|
|
@@ -111,5 +111,9 @@ module.exports = {
|
|
|
111
111
|
}],
|
|
112
112
|
// require object literal shorthand syntax
|
|
113
113
|
'object-shorthand': ['error', 'always'],
|
|
114
|
+
// Warn when file extensions are not used on import paths
|
|
115
|
+
'import/extensions': ['warn', 'always', {
|
|
116
|
+
ignorePackages: true,
|
|
117
|
+
}],
|
|
114
118
|
},
|
|
115
119
|
}
|
package/package.json
CHANGED
|
@@ -1,53 +1,53 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
2
|
+
"name": "@nextcloud/eslint-config",
|
|
3
|
+
"version": "8.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.16.5",
|
|
13
|
+
"@nextcloud/eslint-plugin": "^2.0.0",
|
|
14
|
+
"eslint": "^8.6.0",
|
|
15
|
+
"eslint-config-standard": "^17.0.0-0",
|
|
16
|
+
"eslint-plugin-import": "^2.25.4",
|
|
17
|
+
"eslint-plugin-jsdoc": "^39.2.1",
|
|
18
|
+
"eslint-plugin-n": "^15.2.3",
|
|
19
|
+
"eslint-plugin-promise": "^6.0.0",
|
|
20
|
+
"eslint-plugin-vue": "^9.1.1",
|
|
21
|
+
"webpack": "^5.4.0"
|
|
22
|
+
},
|
|
23
|
+
"devDependencies": {
|
|
24
|
+
"@babel/core": "^7.13.10",
|
|
25
|
+
"@babel/eslint-parser": "^7.16.5",
|
|
26
|
+
"@nextcloud/eslint-plugin": "^2.0.0",
|
|
27
|
+
"eslint": "^8.6.0",
|
|
28
|
+
"eslint-config-standard": "^17.0.0-0",
|
|
29
|
+
"eslint-plugin-import": "^2.25.4",
|
|
30
|
+
"eslint-plugin-jsdoc": "^39.2.1",
|
|
31
|
+
"eslint-plugin-n": "^15.2.3",
|
|
32
|
+
"eslint-plugin-promise": "^6.0.0",
|
|
33
|
+
"eslint-plugin-vue": "^9.1.1",
|
|
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": "^16.0.0",
|
|
51
|
+
"npm": "^7.0.0 || ^8.0.0"
|
|
52
|
+
}
|
|
53
53
|
}
|