This repository was archived by the owner on Jun 29, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +8
-2
lines changed
Expand file tree Collapse file tree 3 files changed +8
-2
lines changed Original file line number Diff line number Diff 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.
Original file line number Diff line number Diff line change 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" ,
Original file line number Diff line number Diff line change 11module . 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} ;
You can’t perform that action at this time.
0 commit comments