Skip to content
This repository was archived by the owner on Jun 29, 2025. It is now read-only.

Commit ad3017a

Browse files
committed
Fix compatibility issue between Prettier and Vue plugin
1 parent a3e2e8b commit ad3017a

File tree

3 files changed

+8
-2
lines changed

3 files changed

+8
-2
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,10 @@ This project adheres to [Semantic Versioning](http://semver.org/).
1212
### Removed
1313

1414

15+
## [1.1.1] - 2019-08-11
16+
### Fixed
17+
* Compatibility issue between Prettier and Vue Plugin.
18+
1519
## [1.1.0] - 2019-08-10
1620
### Changed
1721
* Support for ESLint 6.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "eslint-config-vue-tc",
3-
"version": "1.1.0",
3+
"version": "1.1.1",
44
"description": "ESLint shareable config for Vue projects",
55
"keywords": [
66
"eslintconfig",

rules/vue.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
module.exports = {
22
rules: {
3+
'vue/max-attributes-per-line': 'off',
34
'vue/require-direct-export': 'error',
45
'vue/no-empty-pattern': 'off',
56
// 'vue/no-deprecated-scope-attribute': 'error',
@@ -11,6 +12,7 @@ module.exports = {
1112
shouldMatchCase: false
1213
}
1314
],
14-
'vue/component-name-in-template-casing': ['error', 'kebab-case']
15+
'vue/component-name-in-template-casing': ['error', 'kebab-case'],
16+
'vue/name-property-casing': ['error', 'kebab-case']
1517
}
1618
};

0 commit comments

Comments
 (0)