@nextcloud/eslint-config 7.0.0 → 7.0.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 +14 -1
- package/index.js +2 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,18 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [v7.0.1](https://github.com/nextcloud/eslint-config/tree/v7.0.1) (2022-01-17)
|
|
4
|
+
|
|
5
|
+
[Full Changelog](https://github.com/nextcloud/eslint-config/compare/v7.0.0...v7.0.1)
|
|
6
|
+
|
|
7
|
+
**Fixed bugs:**
|
|
8
|
+
|
|
9
|
+
- Allow component names to be single-word [\#270](https://github.com/nextcloud/eslint-config/pull/270) ([skjnldsv](https://github.com/skjnldsv))
|
|
10
|
+
|
|
11
|
+
**Dependency updates:**
|
|
12
|
+
|
|
13
|
+
- Bump webpack from 5.65.0 to 5.66.0 [\#269](https://github.com/nextcloud/eslint-config/pull/269) ([dependabot[bot]](https://github.com/apps/dependabot))
|
|
14
|
+
- Bump eslint-plugin-vue from 8.2.0 to 8.3.0 [\#268](https://github.com/nextcloud/eslint-config/pull/268) ([dependabot[bot]](https://github.com/apps/dependabot))
|
|
15
|
+
|
|
3
16
|
## [v7.0.0](https://github.com/nextcloud/eslint-config/tree/v7.0.0) (2022-01-12)
|
|
4
17
|
|
|
5
18
|
[Full Changelog](https://github.com/nextcloud/eslint-config/compare/v6.1.2...v7.0.0)
|
|
@@ -7,7 +20,7 @@
|
|
|
7
20
|
**Merged pull requests:**
|
|
8
21
|
|
|
9
22
|
- Eslint 8 [\#266](https://github.com/nextcloud/eslint-config/pull/266) ([skjnldsv](https://github.com/skjnldsv))
|
|
10
|
-
|
|
23
|
+
- v7.0.0 [\#267](https://github.com/nextcloud/eslint-config/pull/267) ([skjnldsv](https://github.com/skjnldsv))
|
|
11
24
|
## [v6.1.2](https://github.com/nextcloud/eslint-config/tree/v6.1.2) (2021-12-20)
|
|
12
25
|
|
|
13
26
|
[Full Changelog](https://github.com/nextcloud/eslint-config/compare/v6.1.1...v6.1.2)
|
package/index.js
CHANGED
|
@@ -95,6 +95,8 @@ module.exports = {
|
|
|
95
95
|
'singleline': 'beside',
|
|
96
96
|
'multiline': 'below',
|
|
97
97
|
}],
|
|
98
|
+
// Allow single-word components names
|
|
99
|
+
'vue/multi-word-component-names': ['off'],
|
|
98
100
|
// custom event naming convention
|
|
99
101
|
'vue/custom-event-name-casing': ['error', 'kebab-case', {
|
|
100
102
|
// allows custom xxxx:xxx events formats
|