From 83db65f4645f657080fdd5268649e82174910649 Mon Sep 17 00:00:00 2001 From: Anthony Fu Date: Fri, 11 Mar 2022 05:56:30 +0800 Subject: [PATCH] v0.18.7 --- CHANGELOG.md | 11 +++++++++++ lerna.json | 2 +- packages/all/CHANGELOG.md | 8 ++++++++ packages/all/package.json | 6 +++--- packages/basic/CHANGELOG.md | 11 +++++++++++ packages/basic/package.json | 2 +- packages/react/CHANGELOG.md | 8 ++++++++ packages/react/package.json | 4 ++-- packages/typescript/CHANGELOG.md | 11 +++++++++++ packages/typescript/package.json | 4 ++-- packages/vue/CHANGELOG.md | 8 ++++++++ packages/vue/package.json | 4 ++-- 12 files changed, 68 insertions(+), 11 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index dc986dc..d900873 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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.18.7](https://github.com/antfu/eslint-config/compare/v0.18.6...v0.18.7) (2022-03-10) + + +### Features + +* improve `no-unused-vars` rule ([2e962a2](https://github.com/antfu/eslint-config/commit/2e962a278571113853435221e8c3d43bd9fa1421)) + + + + + ## [0.18.6](https://github.com/antfu/eslint-config/compare/v0.18.5...v0.18.6) (2022-03-10) diff --git a/lerna.json b/lerna.json index d77e7f4..16e0f9e 100644 --- a/lerna.json +++ b/lerna.json @@ -2,5 +2,5 @@ "packages": [ "packages/*" ], - "version": "0.18.6" + "version": "0.18.7" } diff --git a/packages/all/CHANGELOG.md b/packages/all/CHANGELOG.md index f84dbfa..d4b198b 100644 --- a/packages/all/CHANGELOG.md +++ b/packages/all/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.18.7](https://github.com/antfu/eslint-config/compare/v0.18.6...v0.18.7) (2022-03-10) + +**Note:** Version bump only for package @antfu/eslint-config + + + + + ## [0.18.6](https://github.com/antfu/eslint-config/compare/v0.18.5...v0.18.6) (2022-03-10) **Note:** Version bump only for package @antfu/eslint-config diff --git a/packages/all/package.json b/packages/all/package.json index 77c5c1f..1d547c5 100644 --- a/packages/all/package.json +++ b/packages/all/package.json @@ -1,6 +1,6 @@ { "name": "@antfu/eslint-config", - "version": "0.18.6", + "version": "0.18.7", "description": "", "keywords": [], "license": "MIT", @@ -13,8 +13,8 @@ "eslint": ">=7.4.0" }, "dependencies": { - "@antfu/eslint-config-react": "^0.18.6", - "@antfu/eslint-config-vue": "^0.18.6", + "@antfu/eslint-config-react": "^0.18.7", + "@antfu/eslint-config-vue": "^0.18.7", "@typescript-eslint/eslint-plugin": "^5.13.0", "@typescript-eslint/parser": "^5.13.0", "eslint-config-standard": "17.0.0-1", diff --git a/packages/basic/CHANGELOG.md b/packages/basic/CHANGELOG.md index 8d4ce8c..1c8678e 100644 --- a/packages/basic/CHANGELOG.md +++ b/packages/basic/CHANGELOG.md @@ -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.18.7](https://github.com/antfu/eslint-config/compare/v0.18.6...v0.18.7) (2022-03-10) + + +### Features + +* improve `no-unused-vars` rule ([2e962a2](https://github.com/antfu/eslint-config/commit/2e962a278571113853435221e8c3d43bd9fa1421)) + + + + + ## [0.18.6](https://github.com/antfu/eslint-config/compare/v0.18.5...v0.18.6) (2022-03-10) diff --git a/packages/basic/package.json b/packages/basic/package.json index 4b14a5d..633a412 100644 --- a/packages/basic/package.json +++ b/packages/basic/package.json @@ -1,6 +1,6 @@ { "name": "@antfu/eslint-config-basic", - "version": "0.18.6", + "version": "0.18.7", "description": "", "keywords": [], "license": "MIT", diff --git a/packages/react/CHANGELOG.md b/packages/react/CHANGELOG.md index 9bf4eca..0177c63 100644 --- a/packages/react/CHANGELOG.md +++ b/packages/react/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.18.7](https://github.com/antfu/eslint-config/compare/v0.18.6...v0.18.7) (2022-03-10) + +**Note:** Version bump only for package @antfu/eslint-config-react + + + + + ## [0.18.6](https://github.com/antfu/eslint-config/compare/v0.18.5...v0.18.6) (2022-03-10) **Note:** Version bump only for package @antfu/eslint-config-react diff --git a/packages/react/package.json b/packages/react/package.json index ac6193e..f1e1857 100644 --- a/packages/react/package.json +++ b/packages/react/package.json @@ -1,6 +1,6 @@ { "name": "@antfu/eslint-config-react", - "version": "0.18.6", + "version": "0.18.7", "description": "", "keywords": [], "license": "MIT", @@ -19,7 +19,7 @@ "access": "public" }, "dependencies": { - "@antfu/eslint-config-ts": "^0.18.6", + "@antfu/eslint-config-ts": "^0.18.7", "eslint-plugin-react": "^7.29.3" }, "devDependencies": { diff --git a/packages/typescript/CHANGELOG.md b/packages/typescript/CHANGELOG.md index 1403175..3d0b8a2 100644 --- a/packages/typescript/CHANGELOG.md +++ b/packages/typescript/CHANGELOG.md @@ -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.18.7](https://github.com/antfu/eslint-config/compare/v0.18.6...v0.18.7) (2022-03-10) + + +### Features + +* improve `no-unused-vars` rule ([2e962a2](https://github.com/antfu/eslint-config/commit/2e962a278571113853435221e8c3d43bd9fa1421)) + + + + + ## [0.18.6](https://github.com/antfu/eslint-config/compare/v0.18.5...v0.18.6) (2022-03-10) **Note:** Version bump only for package @antfu/eslint-config-ts diff --git a/packages/typescript/package.json b/packages/typescript/package.json index 277428f..1aad67a 100644 --- a/packages/typescript/package.json +++ b/packages/typescript/package.json @@ -1,6 +1,6 @@ { "name": "@antfu/eslint-config-ts", - "version": "0.18.6", + "version": "0.18.7", "description": "", "keywords": [], "license": "MIT", @@ -17,7 +17,7 @@ "typescript": ">=3.9" }, "dependencies": { - "@antfu/eslint-config-basic": "^0.18.6", + "@antfu/eslint-config-basic": "^0.18.7", "@typescript-eslint/eslint-plugin": "^5.13.0", "@typescript-eslint/parser": "^5.13.0" }, diff --git a/packages/vue/CHANGELOG.md b/packages/vue/CHANGELOG.md index a8ba0b3..f633cfd 100644 --- a/packages/vue/CHANGELOG.md +++ b/packages/vue/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.18.7](https://github.com/antfu/eslint-config/compare/v0.18.6...v0.18.7) (2022-03-10) + +**Note:** Version bump only for package @antfu/eslint-config-vue + + + + + ## [0.18.6](https://github.com/antfu/eslint-config/compare/v0.18.5...v0.18.6) (2022-03-10) **Note:** Version bump only for package @antfu/eslint-config-vue diff --git a/packages/vue/package.json b/packages/vue/package.json index ac3f130..c3ed531 100644 --- a/packages/vue/package.json +++ b/packages/vue/package.json @@ -1,6 +1,6 @@ { "name": "@antfu/eslint-config-vue", - "version": "0.18.6", + "version": "0.18.7", "description": "", "keywords": [], "license": "MIT", @@ -16,7 +16,7 @@ "access": "public" }, "dependencies": { - "@antfu/eslint-config-ts": "^0.18.6", + "@antfu/eslint-config-ts": "^0.18.7", "eslint-plugin-vue": "^8.5.0" }, "devDependencies": {