Compare commits

..

5 Commits

Author SHA1 Message Date
Anthony Fu
2e208c4d05 v0.2.4 2019-07-19 15:51:40 +08:00
Anthony Fu
03b3d7a295 fix: vue deps 2019-07-19 15:51:21 +08:00
Anthony Fu
559d60c3ec v0.2.3 2019-07-19 15:33:05 +08:00
Anthony Fu
cbf7bca6d2 fix: update vue config 2019-07-19 15:32:43 +08:00
Anthony Fu
7105b268ee chore: release -y 2019-07-19 14:42:36 +08:00
6 changed files with 51 additions and 5 deletions

View File

@@ -3,6 +3,28 @@
All notable changes to this project will be documented in this file. All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
## [0.2.4](https://github.com/antfu/eslint-config/compare/v0.2.3...v0.2.4) (2019-07-19)
### Bug Fixes
* vue deps ([03b3d7a](https://github.com/antfu/eslint-config/commit/03b3d7a))
## [0.2.3](https://github.com/antfu/eslint-config/compare/v0.2.2...v0.2.3) (2019-07-19)
### Bug Fixes
* update vue config ([cbf7bca](https://github.com/antfu/eslint-config/commit/cbf7bca))
## [0.2.2](https://github.com/antfu/eslint-config/compare/v0.2.1...v0.2.2) (2019-07-19) ## [0.2.2](https://github.com/antfu/eslint-config/compare/v0.2.1...v0.2.2) (2019-07-19)

View File

@@ -2,5 +2,5 @@
"packages": [ "packages": [
"packages/*" "packages/*"
], ],
"version": "0.2.2" "version": "0.2.4"
} }

View File

@@ -7,7 +7,7 @@
"postinstall": "lerna bootstrap", "postinstall": "lerna bootstrap",
"lint": "lerna run lint", "lint": "lerna run lint",
"lint:fix": "lerna run lint -- -- --fix", "lint:fix": "lerna run lint -- -- --fix",
"release": "lerna publish --conventional-commits" "release": "lerna publish --conventional-commits --graph-type all -y"
}, },
"devDependencies": { "devDependencies": {
"@antfu/eslint-config": "^0.1.5", "@antfu/eslint-config": "^0.1.5",

View File

@@ -3,6 +3,28 @@
All notable changes to this project will be documented in this file. All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
## [0.2.4](https://github.com/antfu/eslint-config/compare/v0.2.3...v0.2.4) (2019-07-19)
### Bug Fixes
* vue deps ([03b3d7a](https://github.com/antfu/eslint-config/commit/03b3d7a))
## [0.2.3](https://github.com/antfu/eslint-config/compare/v0.2.2...v0.2.3) (2019-07-19)
### Bug Fixes
* update vue config ([cbf7bca](https://github.com/antfu/eslint-config/commit/cbf7bca))
## [0.2.1](https://github.com/antfu/eslint-config/compare/v0.2.0...v0.2.1) (2019-07-17) ## [0.2.1](https://github.com/antfu/eslint-config/compare/v0.2.0...v0.2.1) (2019-07-17)

View File

@@ -10,5 +10,7 @@ module.exports = {
plugins: [ plugins: [
'vue' 'vue'
], ],
rules: {} rules: {
'vue/max-attributes-per-line': ['warning', { singleline: 5 }],
}
} }

View File

@@ -1,6 +1,6 @@
{ {
"name": "@antfu/eslint-config-vue", "name": "@antfu/eslint-config-vue",
"version": "0.2.1", "version": "0.2.4",
"description": "", "description": "",
"main": "index.js", "main": "index.js",
"keywords": [], "keywords": [],
@@ -19,7 +19,7 @@
"access": "public" "access": "public"
}, },
"dependencies": { "dependencies": {
"@antfu/eslint-config": "^0.2.0", "@antfu/eslint-config-ts": "^0.2.2",
"eslint-plugin-nuxt": "0.4.3", "eslint-plugin-nuxt": "0.4.3",
"eslint-plugin-vue": "5.2.3" "eslint-plugin-vue": "5.2.3"
}, },