Compare commits
	
		
			9 Commits
		
	
	
		
	
	| Author | SHA1 | Date | |
|---|---|---|---|
|  | 23506b57c1 | ||
|  | be4d232fb8 | ||
|  | 2e208c4d05 | ||
|  | 03b3d7a295 | ||
|  | 559d60c3ec | ||
|  | cbf7bca6d2 | ||
|  | 7105b268ee | ||
|  | c8c6f07341 | ||
|  | 5d507f1d93 | 
							
								
								
									
										44
									
								
								CHANGELOG.md
									
									
									
									
									
								
							
							
						
						
									
										44
									
								
								CHANGELOG.md
									
									
									
									
									
								
							| @@ -3,6 +3,50 @@ | ||||
| All notable changes to this project will be documented in this file. | ||||
| See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. | ||||
|  | ||||
| ## [0.2.5](https://github.com/antfu/eslint-config/compare/v0.2.4...v0.2.5) (2019-07-19) | ||||
|  | ||||
|  | ||||
| ### Bug Fixes | ||||
|  | ||||
| * vue ([be4d232](https://github.com/antfu/eslint-config/commit/be4d232)) | ||||
|  | ||||
|  | ||||
|  | ||||
|  | ||||
|  | ||||
| ## [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) | ||||
|  | ||||
|  | ||||
| ### Bug Fixes | ||||
|  | ||||
| * update ts rules ([5d507f1](https://github.com/antfu/eslint-config/commit/5d507f1)) | ||||
|  | ||||
|  | ||||
|  | ||||
|  | ||||
|  | ||||
| ## [0.2.1](https://github.com/antfu/eslint-config/compare/v0.2.0...v0.2.1) (2019-07-17) | ||||
|  | ||||
|  | ||||
|   | ||||
| @@ -2,5 +2,5 @@ | ||||
|   "packages": [ | ||||
|     "packages/*" | ||||
|   ], | ||||
|   "version": "0.2.1" | ||||
|   "version": "0.2.5" | ||||
| } | ||||
|   | ||||
| @@ -7,7 +7,7 @@ | ||||
|     "postinstall": "lerna bootstrap", | ||||
|     "lint": "lerna run lint", | ||||
|     "lint:fix": "lerna run lint -- -- --fix", | ||||
|     "release": "lerna publish --conventional-commits" | ||||
|     "release": "lerna publish --conventional-commits --graph-type all -y" | ||||
|   }, | ||||
|   "devDependencies": { | ||||
|     "@antfu/eslint-config": "^0.1.5", | ||||
|   | ||||
| @@ -3,6 +3,17 @@ | ||||
| All notable changes to this project will be documented in this file. | ||||
| See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. | ||||
|  | ||||
| ## [0.2.2](https://github.com/antfu/eslint-config/compare/v0.2.1...v0.2.2) (2019-07-19) | ||||
|  | ||||
|  | ||||
| ### Bug Fixes | ||||
|  | ||||
| * update ts rules ([5d507f1](https://github.com/antfu/eslint-config/commit/5d507f1)) | ||||
|  | ||||
|  | ||||
|  | ||||
|  | ||||
|  | ||||
| ## [0.2.1](https://github.com/antfu/eslint-config/compare/v0.2.0...v0.2.1) (2019-07-17) | ||||
|  | ||||
|  | ||||
|   | ||||
| @@ -9,6 +9,8 @@ module.exports = { | ||||
|   ], | ||||
|   rules: { | ||||
|     // TS | ||||
|     'no-useless-constructor': 'off', | ||||
|     '@typescript-eslint/semi': ['error', 'never'], | ||||
|     '@typescript-eslint/no-unused-vars': [2, { args: 'none' }], | ||||
|     '@typescript-eslint/indent': ['error', 2], | ||||
|     '@typescript-eslint/member-delimiter-style': ['error', { multiline: { delimiter: 'none' } }], | ||||
| @@ -17,5 +19,7 @@ module.exports = { | ||||
|     '@typescript-eslint/explicit-function-return-type': 'off', | ||||
|     '@typescript-eslint/explicit-member-accessibility': 'off', | ||||
|     '@typescript-eslint/no-explicit-any': 'off', | ||||
|     '@typescript-eslint/no-parameter-properties': 'off', | ||||
|     '@typescript-eslint/no-empty-interface': 'off', | ||||
|   } | ||||
| } | ||||
|   | ||||
| @@ -1,6 +1,6 @@ | ||||
| { | ||||
|   "name": "@antfu/eslint-config-ts", | ||||
|   "version": "0.2.1", | ||||
|   "version": "0.2.2", | ||||
|   "description": "", | ||||
|   "main": "index.js", | ||||
|   "keywords": [], | ||||
|   | ||||
| @@ -3,6 +3,39 @@ | ||||
| All notable changes to this project will be documented in this file. | ||||
| See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. | ||||
|  | ||||
| ## [0.2.5](https://github.com/antfu/eslint-config/compare/v0.2.4...v0.2.5) (2019-07-19) | ||||
|  | ||||
|  | ||||
| ### Bug Fixes | ||||
|  | ||||
| * vue ([be4d232](https://github.com/antfu/eslint-config/commit/be4d232)) | ||||
|  | ||||
|  | ||||
|  | ||||
|  | ||||
|  | ||||
| ## [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) | ||||
|  | ||||
|  | ||||
|   | ||||
| @@ -10,5 +10,7 @@ module.exports = { | ||||
|   plugins: [ | ||||
|     'vue' | ||||
|   ], | ||||
|   rules: {} | ||||
|   rules: { | ||||
|     'vue/max-attributes-per-line': ['warn', { singleline: 5 }], | ||||
|   } | ||||
| } | ||||
|   | ||||
| @@ -1,6 +1,6 @@ | ||||
| { | ||||
|   "name": "@antfu/eslint-config-vue", | ||||
|   "version": "0.2.1", | ||||
|   "version": "0.2.5", | ||||
|   "description": "", | ||||
|   "main": "index.js", | ||||
|   "keywords": [], | ||||
| @@ -19,7 +19,7 @@ | ||||
|     "access": "public" | ||||
|   }, | ||||
|   "dependencies": { | ||||
|     "@antfu/eslint-config": "^0.2.0", | ||||
|     "@antfu/eslint-config-ts": "^0.2.2", | ||||
|     "eslint-plugin-nuxt": "0.4.3", | ||||
|     "eslint-plugin-vue": "5.2.3" | ||||
|   }, | ||||
|   | ||||
		Reference in New Issue
	
	Block a user