Compare commits

...

18 Commits

Author SHA1 Message Date
Anthony Fu
e6ffa98249 v0.14.2 2021-12-28 02:51:07 +08:00
Anthony Fu
7b71c7852d fix: upgrade deps, close #68 2021-12-28 02:50:58 +08:00
Anthony Fu
a8d7a3401b v0.14.1 2021-12-27 17:04:59 +08:00
Anthony Fu
46e9ea35b9 fix: disable vue attrs wrap 2021-12-27 17:04:52 +08:00
Anthony Fu
392f70ffc4 v0.14.0 2021-12-18 11:43:39 +08:00
Anthony Fu
d45487e1f6 feat: enable sort-imports 2021-12-18 11:42:52 +08:00
Anthony Fu
37439ec91a v0.13.1 2021-12-12 08:21:05 +08:00
Anthony Fu
0722603cfe fix: no-use-before-define for functions 2021-12-12 08:20:58 +08:00
Anthony Fu
25602827e3 v0.13.0 2021-12-12 08:17:59 +08:00
Anthony Fu
dd76d5d8d9 feat: update ts rules, enforce import type 2021-12-12 08:17:49 +08:00
Anthony Fu
7993f922db v0.12.2 2021-12-07 23:46:31 +08:00
Anthony Fu
2ccdc6f2a5 fix(react): disable react/react-in-jsx-scope 2021-12-07 23:46:24 +08:00
Anthony Fu
1eb8214bb1 v0.12.1 2021-12-06 05:40:44 +08:00
Anthony Fu
6373bc7ec9 fix: rules 2021-12-06 05:40:37 +08:00
Anthony Fu
cc47ac65e6 v0.12.0 2021-12-04 23:56:56 +08:00
Anthony Fu
2e07691eeb feat: rules for tests 2021-12-04 23:56:37 +08:00
Anthony Fu
92540f2135 v0.11.1 2021-11-28 01:09:54 +08:00
Anthony Fu
eb76d9b8bb fix(vue): disable vue/multi-word-component-names 2021-11-28 01:09:24 +08:00
18 changed files with 653 additions and 194 deletions

View File

@@ -3,6 +3,105 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
## [0.14.2](https://github.com/antfu/eslint-config/compare/v0.14.1...v0.14.2) (2021-12-27)
### Bug Fixes
* upgrade deps, close [#68](https://github.com/antfu/eslint-config/issues/68) ([7b71c78](https://github.com/antfu/eslint-config/commit/7b71c7852d3db3df05961893b4f085c16d95d274))
## [0.14.1](https://github.com/antfu/eslint-config/compare/v0.14.0...v0.14.1) (2021-12-27)
### Bug Fixes
* disable vue attrs wrap ([46e9ea3](https://github.com/antfu/eslint-config/commit/46e9ea35b9ba4d112cdd0290f0f3cd0309c79416))
# [0.14.0](https://github.com/antfu/eslint-config/compare/v0.13.1...v0.14.0) (2021-12-18)
### Features
* enable sort-imports ([d45487e](https://github.com/antfu/eslint-config/commit/d45487e1f606ce88ca2e36b93953a1af4b726bc1))
## [0.13.1](https://github.com/antfu/eslint-config/compare/v0.13.0...v0.13.1) (2021-12-12)
### Bug Fixes
* `no-use-before-define` for functions ([0722603](https://github.com/antfu/eslint-config/commit/0722603cfee659abab80e9e7f30a8112702ccc12))
# [0.13.0](https://github.com/antfu/eslint-config/compare/v0.12.2...v0.13.0) (2021-12-12)
### Features
* update ts rules, enforce import type ([dd76d5d](https://github.com/antfu/eslint-config/commit/dd76d5d8d9e0f016a00ab92f65cadb1655395c1c))
## [0.12.2](https://github.com/antfu/eslint-config/compare/v0.12.1...v0.12.2) (2021-12-07)
### Bug Fixes
* **react:** disable `react/react-in-jsx-scope` ([2ccdc6f](https://github.com/antfu/eslint-config/commit/2ccdc6f2a5850081a12a7484625745dfbb371cc9))
## [0.12.1](https://github.com/antfu/eslint-config/compare/v0.12.0...v0.12.1) (2021-12-05)
### Bug Fixes
* rules ([6373bc7](https://github.com/antfu/eslint-config/commit/6373bc7ec95fd97379ee6b550148fa34f0611ace))
# [0.12.0](https://github.com/antfu/eslint-config/compare/v0.11.1...v0.12.0) (2021-12-04)
### Features
* rules for tests ([2e07691](https://github.com/antfu/eslint-config/commit/2e07691eebc3d74bf0c9d8b14cedc7ef7c89fbfb))
## [0.11.1](https://github.com/antfu/eslint-config/compare/v0.11.0...v0.11.1) (2021-11-27)
### Bug Fixes
* **vue:** disable `vue/multi-word-component-names` ([eb76d9b](https://github.com/antfu/eslint-config/commit/eb76d9b8bb2dd09ee8baaeec9c4e8610377e9e73))
# [0.11.0](https://github.com/antfu/eslint-config/compare/v0.10.0...v0.11.0) (2021-11-27)
**Note:** Version bump only for package @antfu/eslint-config-monorepo

View File

@@ -2,5 +2,5 @@
"packages": [
"packages/*"
],
"version": "0.11.0"
"version": "0.14.2"
}

View File

@@ -11,8 +11,8 @@
},
"devDependencies": {
"@antfu/eslint-config": "*",
"eslint": "^8.3.0",
"eslint": "^8.5.0",
"lerna": "^4.0.0",
"typescript": "^4.5.2"
"typescript": "^4.5.4"
}
}

View File

@@ -3,6 +3,81 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
## [0.14.2](https://github.com/antfu/eslint-config/compare/v0.14.1...v0.14.2) (2021-12-27)
### Bug Fixes
* upgrade deps, close [#68](https://github.com/antfu/eslint-config/issues/68) ([7b71c78](https://github.com/antfu/eslint-config/commit/7b71c7852d3db3df05961893b4f085c16d95d274))
## [0.14.1](https://github.com/antfu/eslint-config/compare/v0.14.0...v0.14.1) (2021-12-27)
**Note:** Version bump only for package @antfu/eslint-config
# [0.14.0](https://github.com/antfu/eslint-config/compare/v0.13.1...v0.14.0) (2021-12-18)
**Note:** Version bump only for package @antfu/eslint-config
## [0.13.1](https://github.com/antfu/eslint-config/compare/v0.13.0...v0.13.1) (2021-12-12)
**Note:** Version bump only for package @antfu/eslint-config
# [0.13.0](https://github.com/antfu/eslint-config/compare/v0.12.2...v0.13.0) (2021-12-12)
**Note:** Version bump only for package @antfu/eslint-config
## [0.12.2](https://github.com/antfu/eslint-config/compare/v0.12.1...v0.12.2) (2021-12-07)
**Note:** Version bump only for package @antfu/eslint-config
## [0.12.1](https://github.com/antfu/eslint-config/compare/v0.12.0...v0.12.1) (2021-12-05)
**Note:** Version bump only for package @antfu/eslint-config
# [0.12.0](https://github.com/antfu/eslint-config/compare/v0.11.1...v0.12.0) (2021-12-04)
**Note:** Version bump only for package @antfu/eslint-config
## [0.11.1](https://github.com/antfu/eslint-config/compare/v0.11.0...v0.11.1) (2021-11-27)
**Note:** Version bump only for package @antfu/eslint-config
# [0.11.0](https://github.com/antfu/eslint-config/compare/v0.10.0...v0.11.0) (2021-11-27)
**Note:** Version bump only for package @antfu/eslint-config

View File

@@ -1,6 +1,6 @@
{
"name": "@antfu/eslint-config",
"version": "0.11.0",
"version": "0.14.2",
"description": "",
"keywords": [],
"license": "MIT",
@@ -13,25 +13,25 @@
"eslint": ">=7.4.0"
},
"dependencies": {
"@antfu/eslint-config-react": "^0.11.0",
"@antfu/eslint-config-vue": "^0.11.0",
"@typescript-eslint/eslint-plugin": "^5.4.0",
"@typescript-eslint/parser": "^5.4.0",
"@antfu/eslint-config-react": "^0.14.2",
"@antfu/eslint-config-vue": "^0.14.2",
"@typescript-eslint/eslint-plugin": "^5.8.1",
"@typescript-eslint/parser": "^5.8.1",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-html": "^6.2.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-jsonc": "^2.0.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.1",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-unicorn": "^39.0.0",
"eslint-plugin-vue": "8.1.1",
"eslint-plugin-vue": "8.2.0",
"eslint-plugin-yml": "^0.12.0",
"jsonc-eslint-parser": "^2.0.4",
"yaml-eslint-parser": "^0.5.0"
},
"devDependencies": {
"eslint": "^8.3.0"
"eslint": "^8.5.0"
},
"publishConfig": {
"access": "public"

View File

@@ -3,6 +3,61 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
## [0.14.2](https://github.com/antfu/eslint-config/compare/v0.14.1...v0.14.2) (2021-12-27)
### Bug Fixes
* upgrade deps, close [#68](https://github.com/antfu/eslint-config/issues/68) ([7b71c78](https://github.com/antfu/eslint-config/commit/7b71c7852d3db3df05961893b4f085c16d95d274))
# [0.14.0](https://github.com/antfu/eslint-config/compare/v0.13.1...v0.14.0) (2021-12-18)
### Features
* enable sort-imports ([d45487e](https://github.com/antfu/eslint-config/commit/d45487e1f606ce88ca2e36b93953a1af4b726bc1))
# [0.13.0](https://github.com/antfu/eslint-config/compare/v0.12.2...v0.13.0) (2021-12-12)
### Features
* update ts rules, enforce import type ([dd76d5d](https://github.com/antfu/eslint-config/commit/dd76d5d8d9e0f016a00ab92f65cadb1655395c1c))
## [0.12.1](https://github.com/antfu/eslint-config/compare/v0.12.0...v0.12.1) (2021-12-05)
### Bug Fixes
* rules ([6373bc7](https://github.com/antfu/eslint-config/commit/6373bc7ec95fd97379ee6b550148fa34f0611ace))
# [0.12.0](https://github.com/antfu/eslint-config/compare/v0.11.1...v0.12.0) (2021-12-04)
### Features
* rules for tests ([2e07691](https://github.com/antfu/eslint-config/commit/2e07691eebc3d74bf0c9d8b14cedc7ef7c89fbfb))
# [0.11.0](https://github.com/antfu/eslint-config/compare/v0.10.0...v0.11.0) (2021-11-27)
**Note:** Version bump only for package @antfu/eslint-config-basic

View File

@@ -93,6 +93,12 @@ module.exports = {
'no-console': 'off',
},
},
{
files: ['*.test.ts', '*.test.js', '*.spec.ts', '*.spec.js'],
rules: {
'no-unused-expressions': 'off',
},
},
],
rules: {
// import
@@ -164,6 +170,17 @@ module.exports = {
'template-curly-spacing': 'error',
'arrow-parens': ['error', 'as-needed', { requireForBlockBody: true }],
'generator-star-spacing': 'off',
'spaced-comment': ['error', 'always', {
line: {
markers: ['/'],
exceptions: ['/', '#'],
},
block: {
markers: ['!'],
exceptions: ['*'],
balanced: true,
},
}],
// best-practice
'array-callback-return': 'error',
@@ -211,5 +228,17 @@ module.exports = {
'no-use-before-define': ['error', { functions: false, classes: false, variables: true }],
'eslint-comments/disable-enable-pair': 'off',
'import/no-named-as-default-member': 'off',
'sort-imports': [
'error',
{
ignoreCase: false,
ignoreDeclarationSort: true,
ignoreMemberSort: false,
memberSyntaxSortOrder: ['none', 'all', 'multiple', 'single'],
allowSeparatedGroups: false,
},
],
},
}

View File

@@ -1,6 +1,6 @@
{
"name": "@antfu/eslint-config-basic",
"version": "0.11.0",
"version": "0.14.2",
"description": "",
"keywords": [],
"license": "MIT",
@@ -22,14 +22,14 @@
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-jsonc": "^2.0.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.1",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-unicorn": "^39.0.0",
"eslint-plugin-yml": "^0.12.0",
"jsonc-eslint-parser": "^2.0.4",
"yaml-eslint-parser": "^0.5.0"
},
"devDependencies": {
"eslint": "^8.3.0"
"eslint": "^8.5.0"
},
"publishConfig": {
"access": "public"

View File

@@ -3,6 +3,68 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
## [0.14.2](https://github.com/antfu/eslint-config/compare/v0.14.1...v0.14.2) (2021-12-27)
### Bug Fixes
* upgrade deps, close [#68](https://github.com/antfu/eslint-config/issues/68) ([7b71c78](https://github.com/antfu/eslint-config/commit/7b71c7852d3db3df05961893b4f085c16d95d274))
# [0.14.0](https://github.com/antfu/eslint-config/compare/v0.13.1...v0.14.0) (2021-12-18)
**Note:** Version bump only for package @antfu/eslint-config-react
## [0.13.1](https://github.com/antfu/eslint-config/compare/v0.13.0...v0.13.1) (2021-12-12)
**Note:** Version bump only for package @antfu/eslint-config-react
# [0.13.0](https://github.com/antfu/eslint-config/compare/v0.12.2...v0.13.0) (2021-12-12)
**Note:** Version bump only for package @antfu/eslint-config-react
## [0.12.2](https://github.com/antfu/eslint-config/compare/v0.12.1...v0.12.2) (2021-12-07)
### Bug Fixes
* **react:** disable `react/react-in-jsx-scope` ([2ccdc6f](https://github.com/antfu/eslint-config/commit/2ccdc6f2a5850081a12a7484625745dfbb371cc9))
## [0.12.1](https://github.com/antfu/eslint-config/compare/v0.12.0...v0.12.1) (2021-12-05)
**Note:** Version bump only for package @antfu/eslint-config-react
# [0.12.0](https://github.com/antfu/eslint-config/compare/v0.11.1...v0.12.0) (2021-12-04)
**Note:** Version bump only for package @antfu/eslint-config-react
# [0.11.0](https://github.com/antfu/eslint-config/compare/v0.10.0...v0.11.0) (2021-11-27)
**Note:** Version bump only for package @antfu/eslint-config-react

View File

@@ -13,5 +13,6 @@ module.exports = {
'error',
'prefer-double',
],
'react/react-in-jsx-scope': 'off',
},
}

View File

@@ -1,6 +1,6 @@
{
"name": "@antfu/eslint-config-react",
"version": "0.11.0",
"version": "0.14.2",
"description": "",
"keywords": [],
"license": "MIT",
@@ -19,12 +19,12 @@
"access": "public"
},
"dependencies": {
"@antfu/eslint-config-ts": "^0.11.0",
"eslint-plugin-react": "^7.27.1"
"@antfu/eslint-config-ts": "^0.14.2",
"eslint-plugin-react": "^7.28.0"
},
"devDependencies": {
"eslint": "^8.3.0",
"eslint": "^8.5.0",
"react": "^17.0.2",
"typescript": "^4.5.2"
"typescript": "^4.5.4"
}
}

View File

@@ -3,6 +3,66 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
## [0.14.2](https://github.com/antfu/eslint-config/compare/v0.14.1...v0.14.2) (2021-12-27)
### Bug Fixes
* upgrade deps, close [#68](https://github.com/antfu/eslint-config/issues/68) ([7b71c78](https://github.com/antfu/eslint-config/commit/7b71c7852d3db3df05961893b4f085c16d95d274))
# [0.14.0](https://github.com/antfu/eslint-config/compare/v0.13.1...v0.14.0) (2021-12-18)
**Note:** Version bump only for package @antfu/eslint-config-ts
## [0.13.1](https://github.com/antfu/eslint-config/compare/v0.13.0...v0.13.1) (2021-12-12)
### Bug Fixes
* `no-use-before-define` for functions ([0722603](https://github.com/antfu/eslint-config/commit/0722603cfee659abab80e9e7f30a8112702ccc12))
# [0.13.0](https://github.com/antfu/eslint-config/compare/v0.12.2...v0.13.0) (2021-12-12)
### Features
* update ts rules, enforce import type ([dd76d5d](https://github.com/antfu/eslint-config/commit/dd76d5d8d9e0f016a00ab92f65cadb1655395c1c))
## [0.12.1](https://github.com/antfu/eslint-config/compare/v0.12.0...v0.12.1) (2021-12-05)
### Bug Fixes
* rules ([6373bc7](https://github.com/antfu/eslint-config/commit/6373bc7ec95fd97379ee6b550148fa34f0611ace))
# [0.12.0](https://github.com/antfu/eslint-config/compare/v0.11.1...v0.12.0) (2021-12-04)
**Note:** Version bump only for package @antfu/eslint-config-ts
# [0.11.0](https://github.com/antfu/eslint-config/compare/v0.10.0...v0.11.0) (2021-11-27)
**Note:** Version bump only for package @antfu/eslint-config-ts

View File

@@ -11,17 +11,21 @@ module.exports = {
'import/named': 'off',
// TS
'no-useless-constructor': 'off',
'@typescript-eslint/semi': ['error', 'never'],
'@typescript-eslint/member-delimiter-style': ['error', { multiline: { delimiter: 'none' } }],
'@typescript-eslint/type-annotation-spacing': ['error', {}],
'@typescript-eslint/consistent-type-imports': ['error', { prefer: 'type-imports', disallowTypeAnnotations: false }],
// Override JS
'no-useless-constructor': 'off',
'indent': 'off',
'@typescript-eslint/indent': ['error', 2],
'no-unused-vars': 'off',
'@typescript-eslint/no-unused-vars': 'error',
'no-redeclare': 'off',
'@typescript-eslint/no-redeclare': 'error',
'no-use-before-define': 'off',
'@typescript-eslint/no-use-before-define': ['error', { functions: false, classes: false, variables: true }],
// off
'@typescript-eslint/camelcase': 'off',
@@ -36,5 +40,6 @@ module.exports = {
'@typescript-eslint/ban-ts-comment': 'off',
'@typescript-eslint/explicit-module-boundary-types': 'off',
'@typescript-eslint/ban-types': 'off',
'@typescript-eslint/no-namespace': 'off',
},
}

View File

@@ -1,6 +1,6 @@
{
"name": "@antfu/eslint-config-ts",
"version": "0.11.0",
"version": "0.14.2",
"description": "",
"keywords": [],
"license": "MIT",
@@ -17,11 +17,11 @@
"typescript": ">=3.9"
},
"dependencies": {
"@antfu/eslint-config-basic": "^0.11.0",
"@typescript-eslint/eslint-plugin": "^5.4.0",
"@typescript-eslint/parser": "^5.4.0"
"@antfu/eslint-config-basic": "^0.14.2",
"@typescript-eslint/eslint-plugin": "^5.8.1",
"@typescript-eslint/parser": "^5.8.1"
},
"devDependencies": {
"eslint": "^8.3.0"
"eslint": "^8.5.0"
}
}

View File

@@ -3,6 +3,79 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
## [0.14.2](https://github.com/antfu/eslint-config/compare/v0.14.1...v0.14.2) (2021-12-27)
### Bug Fixes
* upgrade deps, close [#68](https://github.com/antfu/eslint-config/issues/68) ([7b71c78](https://github.com/antfu/eslint-config/commit/7b71c7852d3db3df05961893b4f085c16d95d274))
## [0.14.1](https://github.com/antfu/eslint-config/compare/v0.14.0...v0.14.1) (2021-12-27)
### Bug Fixes
* disable vue attrs wrap ([46e9ea3](https://github.com/antfu/eslint-config/commit/46e9ea35b9ba4d112cdd0290f0f3cd0309c79416))
# [0.14.0](https://github.com/antfu/eslint-config/compare/v0.13.1...v0.14.0) (2021-12-18)
**Note:** Version bump only for package @antfu/eslint-config-vue
## [0.13.1](https://github.com/antfu/eslint-config/compare/v0.13.0...v0.13.1) (2021-12-12)
**Note:** Version bump only for package @antfu/eslint-config-vue
# [0.13.0](https://github.com/antfu/eslint-config/compare/v0.12.2...v0.13.0) (2021-12-12)
**Note:** Version bump only for package @antfu/eslint-config-vue
## [0.12.1](https://github.com/antfu/eslint-config/compare/v0.12.0...v0.12.1) (2021-12-05)
**Note:** Version bump only for package @antfu/eslint-config-vue
# [0.12.0](https://github.com/antfu/eslint-config/compare/v0.11.1...v0.12.0) (2021-12-04)
**Note:** Version bump only for package @antfu/eslint-config-vue
## [0.11.1](https://github.com/antfu/eslint-config/compare/v0.11.0...v0.11.1) (2021-11-27)
### Bug Fixes
* **vue:** disable `vue/multi-word-component-names` ([eb76d9b](https://github.com/antfu/eslint-config/commit/eb76d9b8bb2dd09ee8baaeec9c4e8610377e9e73))
# [0.11.0](https://github.com/antfu/eslint-config/compare/v0.10.0...v0.11.0) (2021-11-27)
**Note:** Version bump only for package @antfu/eslint-config-vue

View File

@@ -18,10 +18,10 @@ module.exports = {
'@antfu/eslint-config-ts',
],
rules: {
'vue/max-attributes-per-line': ['warn', { singleline: 5 }],
'vue/html-self-closing': 'off',
'vue/max-attributes-per-line': 'off',
'vue/no-v-html': 'off',
'vue/require-prop-types': 'off',
'vue/require-default-prop': 'off',
'vue/multi-word-component-names': 'off',
},
}

View File

@@ -1,6 +1,6 @@
{
"name": "@antfu/eslint-config-vue",
"version": "0.11.0",
"version": "0.14.2",
"description": "",
"keywords": [],
"license": "MIT",
@@ -16,10 +16,10 @@
"access": "public"
},
"dependencies": {
"@antfu/eslint-config-ts": "^0.11.0",
"eslint-plugin-vue": "^8.1.1"
"@antfu/eslint-config-ts": "^0.14.2",
"eslint-plugin-vue": "^8.2.0"
},
"devDependencies": {
"eslint": "^8.3.0"
"eslint": "^8.5.0"
}
}

326
pnpm-lock.yaml generated
View File

@@ -5,121 +5,121 @@ importers:
.:
specifiers:
'@antfu/eslint-config': '*'
eslint: ^8.3.0
eslint: ^8.5.0
lerna: ^4.0.0
typescript: ^4.5.2
typescript: ^4.5.4
devDependencies:
'@antfu/eslint-config': link:packages/all
eslint: 8.3.0
eslint: 8.5.0
lerna: 4.0.0
typescript: 4.5.2
typescript: 4.5.4
packages/all:
specifiers:
'@antfu/eslint-config-react': ^0.10.0
'@antfu/eslint-config-vue': ^0.10.0
'@typescript-eslint/eslint-plugin': ^5.4.0
'@typescript-eslint/parser': ^5.4.0
eslint: ^8.3.0
'@antfu/eslint-config-react': ^0.14.0
'@antfu/eslint-config-vue': ^0.14.1
'@typescript-eslint/eslint-plugin': ^5.8.1
'@typescript-eslint/parser': ^5.8.1
eslint: ^8.5.0
eslint-config-standard: ^16.0.3
eslint-plugin-eslint-comments: ^3.2.0
eslint-plugin-html: ^6.2.0
eslint-plugin-import: ^2.25.3
eslint-plugin-jsonc: ^2.0.0
eslint-plugin-node: ^11.1.0
eslint-plugin-promise: ^5.1.1
eslint-plugin-promise: ^6.0.0
eslint-plugin-unicorn: ^39.0.0
eslint-plugin-vue: 8.1.1
eslint-plugin-vue: 8.2.0
eslint-plugin-yml: ^0.12.0
jsonc-eslint-parser: ^2.0.4
yaml-eslint-parser: ^0.5.0
dependencies:
'@antfu/eslint-config-react': link:../react
'@antfu/eslint-config-vue': link:../vue
'@typescript-eslint/eslint-plugin': 5.4.0_5c8ff4cecd5a55e744866c0654edac32
'@typescript-eslint/parser': 5.4.0_eslint@8.3.0+typescript@4.5.2
eslint-config-standard: 16.0.3_a91986cd61f51e0cdba75303fb12b37d
eslint-plugin-eslint-comments: 3.2.0_eslint@8.3.0
'@typescript-eslint/eslint-plugin': 5.8.1_3a47348159e115370aa4cba56aba33b6
'@typescript-eslint/parser': 5.8.1_eslint@8.5.0+typescript@4.5.4
eslint-config-standard: 16.0.3_4cecef3480376bac71ded249816d1e72
eslint-plugin-eslint-comments: 3.2.0_eslint@8.5.0
eslint-plugin-html: 6.2.0
eslint-plugin-import: 2.25.3_eslint@8.3.0
eslint-plugin-jsonc: 2.0.0_eslint@8.3.0
eslint-plugin-node: 11.1.0_eslint@8.3.0
eslint-plugin-promise: 5.1.1_eslint@8.3.0
eslint-plugin-unicorn: 39.0.0_eslint@8.3.0
eslint-plugin-vue: 8.1.1_eslint@8.3.0
eslint-plugin-yml: 0.12.0_eslint@8.3.0
jsonc-eslint-parser: 2.0.4_eslint@8.3.0
eslint-plugin-import: 2.25.3_eslint@8.5.0
eslint-plugin-jsonc: 2.0.0_eslint@8.5.0
eslint-plugin-node: 11.1.0_eslint@8.5.0
eslint-plugin-promise: 6.0.0_eslint@8.5.0
eslint-plugin-unicorn: 39.0.0_eslint@8.5.0
eslint-plugin-vue: 8.2.0_eslint@8.5.0
eslint-plugin-yml: 0.12.0_eslint@8.5.0
jsonc-eslint-parser: 2.0.4_eslint@8.5.0
yaml-eslint-parser: 0.5.0
devDependencies:
eslint: 8.3.0
eslint: 8.5.0
packages/basic:
specifiers:
eslint: ^8.3.0
eslint: ^8.5.0
eslint-config-standard: ^16.0.3
eslint-plugin-eslint-comments: ^3.2.0
eslint-plugin-html: ^6.2.0
eslint-plugin-import: ^2.25.3
eslint-plugin-jsonc: ^2.0.0
eslint-plugin-node: ^11.1.0
eslint-plugin-promise: ^5.1.1
eslint-plugin-promise: ^6.0.0
eslint-plugin-unicorn: ^39.0.0
eslint-plugin-yml: ^0.12.0
jsonc-eslint-parser: ^2.0.4
yaml-eslint-parser: ^0.5.0
dependencies:
eslint-config-standard: 16.0.3_a91986cd61f51e0cdba75303fb12b37d
eslint-plugin-eslint-comments: 3.2.0_eslint@8.3.0
eslint-config-standard: 16.0.3_4cecef3480376bac71ded249816d1e72
eslint-plugin-eslint-comments: 3.2.0_eslint@8.5.0
eslint-plugin-html: 6.2.0
eslint-plugin-import: 2.25.3_eslint@8.3.0
eslint-plugin-jsonc: 2.0.0_eslint@8.3.0
eslint-plugin-node: 11.1.0_eslint@8.3.0
eslint-plugin-promise: 5.1.1_eslint@8.3.0
eslint-plugin-unicorn: 39.0.0_eslint@8.3.0
eslint-plugin-yml: 0.12.0_eslint@8.3.0
jsonc-eslint-parser: 2.0.4_eslint@8.3.0
eslint-plugin-import: 2.25.3_eslint@8.5.0
eslint-plugin-jsonc: 2.0.0_eslint@8.5.0
eslint-plugin-node: 11.1.0_eslint@8.5.0
eslint-plugin-promise: 6.0.0_eslint@8.5.0
eslint-plugin-unicorn: 39.0.0_eslint@8.5.0
eslint-plugin-yml: 0.12.0_eslint@8.5.0
jsonc-eslint-parser: 2.0.4_eslint@8.5.0
yaml-eslint-parser: 0.5.0
devDependencies:
eslint: 8.3.0
eslint: 8.5.0
packages/react:
specifiers:
'@antfu/eslint-config-ts': ^0.10.0
eslint: ^8.3.0
eslint-plugin-react: ^7.27.1
'@antfu/eslint-config-ts': ^0.14.0
eslint: ^8.5.0
eslint-plugin-react: ^7.28.0
react: ^17.0.2
typescript: ^4.5.2
typescript: ^4.5.4
dependencies:
'@antfu/eslint-config-ts': link:../typescript
eslint-plugin-react: 7.27.1_eslint@8.3.0
eslint-plugin-react: 7.28.0_eslint@8.5.0
devDependencies:
eslint: 8.3.0
eslint: 8.5.0
react: 17.0.2
typescript: 4.5.2
typescript: 4.5.4
packages/typescript:
specifiers:
'@antfu/eslint-config-basic': ^0.10.0
'@typescript-eslint/eslint-plugin': ^5.4.0
'@typescript-eslint/parser': ^5.4.0
eslint: ^8.3.0
'@antfu/eslint-config-basic': ^0.14.0
'@typescript-eslint/eslint-plugin': ^5.8.1
'@typescript-eslint/parser': ^5.8.1
eslint: ^8.5.0
dependencies:
'@antfu/eslint-config-basic': link:../basic
'@typescript-eslint/eslint-plugin': 5.4.0_5c8ff4cecd5a55e744866c0654edac32
'@typescript-eslint/parser': 5.4.0_eslint@8.3.0+typescript@4.5.2
'@typescript-eslint/eslint-plugin': 5.8.1_3a47348159e115370aa4cba56aba33b6
'@typescript-eslint/parser': 5.8.1_eslint@8.5.0+typescript@4.5.4
devDependencies:
eslint: 8.3.0
eslint: 8.5.0
packages/vue:
specifiers:
'@antfu/eslint-config-ts': ^0.10.0
eslint: ^8.3.0
eslint-plugin-vue: ^8.1.1
'@antfu/eslint-config-ts': ^0.14.0
eslint: ^8.5.0
eslint-plugin-vue: ^8.2.0
dependencies:
'@antfu/eslint-config-ts': link:../typescript
eslint-plugin-vue: 8.1.1_eslint@8.3.0
eslint-plugin-vue: 8.2.0_eslint@8.5.0
devDependencies:
eslint: 8.3.0
eslint: 8.5.0
packages:
@@ -156,7 +156,7 @@ packages:
- supports-color
dev: false
/@babel/eslint-parser/7.13.10_@babel+core@7.13.10+eslint@8.3.0:
/@babel/eslint-parser/7.13.10_@babel+core@7.13.10+eslint@8.5.0:
resolution: {integrity: sha512-/I1HQ3jGPhIpeBFeI3wO9WwWOnBYpuR0pX0KlkdGcRQAVX9prB/FCS2HBpL7BiFbzhny1YCiBH8MTZD2jJa7Hg==}
engines: {node: ^10.13.0 || ^12.13.0 || >=14.0.0}
peerDependencies:
@@ -164,7 +164,7 @@ packages:
eslint: '>=7.5.0'
dependencies:
'@babel/core': 7.13.10
eslint: 8.3.0
eslint: 8.5.0
eslint-scope: 5.1.0
eslint-visitor-keys: 1.3.0
semver: 6.3.0
@@ -324,13 +324,13 @@ packages:
to-fast-properties: 2.0.0
dev: false
/@eslint/eslintrc/1.0.4:
resolution: {integrity: sha512-h8Vx6MdxwWI2WM8/zREHMoqdgLNXEL4QX3MWSVMdyNJGvXVOs+6lp+m2hc3FnuMHDc4poxFNI20vCk0OmI4G0Q==}
/@eslint/eslintrc/1.0.5:
resolution: {integrity: sha512-BLxsnmK3KyPunz5wmCCpqy0YelEoxxGmH73Is+Z74oOTMtExcjkr3dDR6quwrjh1YspA8DH9gnX1o069KiS9AQ==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
dependencies:
ajv: 6.12.6
debug: 4.3.2
espree: 9.1.0
espree: 9.2.0
globals: 13.9.0
ignore: 4.0.6
import-fresh: 3.2.1
@@ -341,19 +341,19 @@ packages:
- supports-color
dev: true
/@humanwhocodes/config-array/0.6.0:
resolution: {integrity: sha512-JQlEKbcgEUjBFhLIF4iqM7u/9lwgHRBcpHrmUNCALK0Q3amXN6lxdoXLnF0sm11E9VqTmBALR87IlUg1bZ8A9A==}
/@humanwhocodes/config-array/0.9.2:
resolution: {integrity: sha512-UXOuFCGcwciWckOpmfKDq/GyhlTf9pN/BzG//x8p8zTOFEcGuA68ANXheFS0AGvy3qgZqLBUkMs7hqzqCKOVwA==}
engines: {node: '>=10.10.0'}
dependencies:
'@humanwhocodes/object-schema': 1.2.0
'@humanwhocodes/object-schema': 1.2.1
debug: 4.3.2
minimatch: 3.0.4
transitivePeerDependencies:
- supports-color
dev: true
/@humanwhocodes/object-schema/1.2.0:
resolution: {integrity: sha512-wdppn25U8z/2yiaT6YGquE6X8sSv7hNMWSXYSSU1jGv/yd6XqjXgTDJ8KP4NgjTXfJ3GbRjeeb8RTV7a/VpM+w==}
/@humanwhocodes/object-schema/1.2.1:
resolution: {integrity: sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==}
dev: true
/@lerna/add/4.0.0:
@@ -1247,8 +1247,8 @@ packages:
resolution: {integrity: sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA==}
dev: true
/@typescript-eslint/eslint-plugin/5.4.0_5c8ff4cecd5a55e744866c0654edac32:
resolution: {integrity: sha512-9/yPSBlwzsetCsGEn9j24D8vGQgJkOTr4oMLas/w886ZtzKIs1iyoqFrwsX2fqYEeUwsdBpC21gcjRGo57u0eg==}
/@typescript-eslint/eslint-plugin/5.8.1_3a47348159e115370aa4cba56aba33b6:
resolution: {integrity: sha512-wTZ5oEKrKj/8/366qTM366zqhIKAp6NCMweoRONtfuC07OAU9nVI2GZZdqQ1qD30WAAtcPdkH+npDwtRFdp4Rw==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies:
'@typescript-eslint/parser': ^5.0.0
@@ -1258,41 +1258,41 @@ packages:
typescript:
optional: true
dependencies:
'@typescript-eslint/experimental-utils': 5.4.0_eslint@8.3.0+typescript@4.5.2
'@typescript-eslint/parser': 5.4.0_eslint@8.3.0+typescript@4.5.2
'@typescript-eslint/scope-manager': 5.4.0
'@typescript-eslint/experimental-utils': 5.8.1_eslint@8.5.0+typescript@4.5.4
'@typescript-eslint/parser': 5.8.1_eslint@8.5.0+typescript@4.5.4
'@typescript-eslint/scope-manager': 5.8.1
debug: 4.3.2
eslint: 8.3.0
eslint: 8.5.0
functional-red-black-tree: 1.0.1
ignore: 5.1.8
regexpp: 3.2.0
semver: 7.3.5
tsutils: 3.21.0_typescript@4.5.2
typescript: 4.5.2
tsutils: 3.21.0_typescript@4.5.4
typescript: 4.5.4
transitivePeerDependencies:
- supports-color
dev: false
/@typescript-eslint/experimental-utils/5.4.0_eslint@8.3.0+typescript@4.5.2:
resolution: {integrity: sha512-Nz2JDIQUdmIGd6p33A+naQmwfkU5KVTLb/5lTk+tLVTDacZKoGQisj8UCxk7onJcrgjIvr8xWqkYI+DbI3TfXg==}
/@typescript-eslint/experimental-utils/5.8.1_eslint@8.5.0+typescript@4.5.4:
resolution: {integrity: sha512-fbodVnjIDU4JpeXWRDsG5IfIjYBxEvs8EBO8W1+YVdtrc2B9ppfof5sZhVEDOtgTfFHnYQJDI8+qdqLYO4ceww==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies:
eslint: '*'
eslint: ^6.0.0 || ^7.0.0 || ^8.0.0
dependencies:
'@types/json-schema': 7.0.9
'@typescript-eslint/scope-manager': 5.4.0
'@typescript-eslint/types': 5.4.0
'@typescript-eslint/typescript-estree': 5.4.0_typescript@4.5.2
eslint: 8.3.0
'@typescript-eslint/scope-manager': 5.8.1
'@typescript-eslint/types': 5.8.1
'@typescript-eslint/typescript-estree': 5.8.1_typescript@4.5.4
eslint: 8.5.0
eslint-scope: 5.1.1
eslint-utils: 3.0.0_eslint@8.3.0
eslint-utils: 3.0.0_eslint@8.5.0
transitivePeerDependencies:
- supports-color
- typescript
dev: false
/@typescript-eslint/parser/5.4.0_eslint@8.3.0+typescript@4.5.2:
resolution: {integrity: sha512-JoB41EmxiYpaEsRwpZEYAJ9XQURPFer8hpkIW9GiaspVLX8oqbqNM8P4EP8HOZg96yaALiLEVWllA2E8vwsIKw==}
/@typescript-eslint/parser/5.8.1_eslint@8.5.0+typescript@4.5.4:
resolution: {integrity: sha512-K1giKHAjHuyB421SoXMXFHHVI4NdNY603uKw92++D3qyxSeYvC10CBJ/GE5Thpo4WTUvu1mmJI2/FFkz38F2Gw==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies:
eslint: ^6.0.0 || ^7.0.0 || ^8.0.0
@@ -1301,31 +1301,31 @@ packages:
typescript:
optional: true
dependencies:
'@typescript-eslint/scope-manager': 5.4.0
'@typescript-eslint/types': 5.4.0
'@typescript-eslint/typescript-estree': 5.4.0_typescript@4.5.2
'@typescript-eslint/scope-manager': 5.8.1
'@typescript-eslint/types': 5.8.1
'@typescript-eslint/typescript-estree': 5.8.1_typescript@4.5.4
debug: 4.3.2
eslint: 8.3.0
typescript: 4.5.2
eslint: 8.5.0
typescript: 4.5.4
transitivePeerDependencies:
- supports-color
dev: false
/@typescript-eslint/scope-manager/5.4.0:
resolution: {integrity: sha512-pRxFjYwoi8R+n+sibjgF9iUiAELU9ihPBtHzocyW8v8D8G8KeQvXTsW7+CBYIyTYsmhtNk50QPGLE3vrvhM5KA==}
/@typescript-eslint/scope-manager/5.8.1:
resolution: {integrity: sha512-DGxJkNyYruFH3NIZc3PwrzwOQAg7vvgsHsHCILOLvUpupgkwDZdNq/cXU3BjF4LNrCsVg0qxEyWasys5AiJ85Q==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
dependencies:
'@typescript-eslint/types': 5.4.0
'@typescript-eslint/visitor-keys': 5.4.0
'@typescript-eslint/types': 5.8.1
'@typescript-eslint/visitor-keys': 5.8.1
dev: false
/@typescript-eslint/types/5.4.0:
resolution: {integrity: sha512-GjXNpmn+n1LvnttarX+sPD6+S7giO+9LxDIGlRl4wK3a7qMWALOHYuVSZpPTfEIklYjaWuMtfKdeByx0AcaThA==}
/@typescript-eslint/types/5.8.1:
resolution: {integrity: sha512-L/FlWCCgnjKOLefdok90/pqInkomLnAcF9UAzNr+DSqMC3IffzumHTQTrINXhP1gVp9zlHiYYjvozVZDPleLcA==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
dev: false
/@typescript-eslint/typescript-estree/5.4.0_typescript@4.5.2:
resolution: {integrity: sha512-nhlNoBdhKuwiLMx6GrybPT3SFILm5Gij2YBdPEPFlYNFAXUJWX6QRgvi/lwVoadaQEFsizohs6aFRMqsXI2ewA==}
/@typescript-eslint/typescript-estree/5.8.1_typescript@4.5.4:
resolution: {integrity: sha512-26lQ8l8tTbG7ri7xEcCFT9ijU5Fk+sx/KRRyyzCv7MQ+rZZlqiDPtMKWLC8P7o+dtCnby4c+OlxuX1tp8WfafQ==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies:
typescript: '*'
@@ -1333,23 +1333,23 @@ packages:
typescript:
optional: true
dependencies:
'@typescript-eslint/types': 5.4.0
'@typescript-eslint/visitor-keys': 5.4.0
'@typescript-eslint/types': 5.8.1
'@typescript-eslint/visitor-keys': 5.8.1
debug: 4.3.2
globby: 11.0.4
is-glob: 4.0.3
semver: 7.3.5
tsutils: 3.21.0_typescript@4.5.2
typescript: 4.5.2
tsutils: 3.21.0_typescript@4.5.4
typescript: 4.5.4
transitivePeerDependencies:
- supports-color
dev: false
/@typescript-eslint/visitor-keys/5.4.0:
resolution: {integrity: sha512-PVbax7MeE7tdLfW5SA0fs8NGVVr+buMPrcj+CWYWPXsZCH8qZ1THufDzbXm1xrZ2b2PA1iENJ0sRq5fuUtvsJg==}
/@typescript-eslint/visitor-keys/5.8.1:
resolution: {integrity: sha512-SWgiWIwocK6NralrJarPZlWdr0hZnj5GXHIgfdm8hNkyKvpeQuFyLP6YjSIe9kf3YBIfU6OHSZLYkQ+smZwtNg==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
dependencies:
'@typescript-eslint/types': 5.4.0
'@typescript-eslint/types': 5.8.1
eslint-visitor-keys: 3.1.0
dev: false
@@ -2310,7 +2310,7 @@ packages:
engines: {node: '>=10'}
dev: true
/eslint-config-standard/16.0.3_a91986cd61f51e0cdba75303fb12b37d:
/eslint-config-standard/16.0.3_4cecef3480376bac71ded249816d1e72:
resolution: {integrity: sha512-x4fmJL5hGqNJKGHSjnLdgA6U6h1YW/G2dW9fA+cyVur4SK6lyue8+UgNKWlZtUDTXvgKDD/Oa3GQjmB5kjtVvg==}
peerDependencies:
eslint: ^7.12.1
@@ -2318,10 +2318,10 @@ packages:
eslint-plugin-node: ^11.1.0
eslint-plugin-promise: ^4.2.1 || ^5.0.0
dependencies:
eslint: 8.3.0
eslint-plugin-import: 2.25.3_eslint@8.3.0
eslint-plugin-node: 11.1.0_eslint@8.3.0
eslint-plugin-promise: 5.1.1_eslint@8.3.0
eslint: 8.5.0
eslint-plugin-import: 2.25.3_eslint@8.5.0
eslint-plugin-node: 11.1.0_eslint@8.5.0
eslint-plugin-promise: 6.0.0_eslint@8.5.0
dev: false
/eslint-import-resolver-node/0.3.6:
@@ -2340,25 +2340,25 @@ packages:
pkg-dir: 2.0.0
dev: false
/eslint-plugin-es/3.0.1_eslint@8.3.0:
/eslint-plugin-es/3.0.1_eslint@8.5.0:
resolution: {integrity: sha512-GUmAsJaN4Fc7Gbtl8uOBlayo2DqhwWvEzykMHSCZHU3XdJ+NSzzZcVhXh3VxX5icqQ+oQdIEawXX8xkR3mIFmQ==}
engines: {node: '>=8.10.0'}
peerDependencies:
eslint: '>=4.19.1'
dependencies:
eslint: 8.3.0
eslint: 8.5.0
eslint-utils: 2.1.0
regexpp: 3.1.0
dev: false
/eslint-plugin-eslint-comments/3.2.0_eslint@8.3.0:
/eslint-plugin-eslint-comments/3.2.0_eslint@8.5.0:
resolution: {integrity: sha512-0jkOl0hfojIHHmEHgmNdqv4fmh7300NdpA9FFpF7zaoLvB/QeXOGNLIo86oAveJFrfB1p05kC8hpEMHM8DwWVQ==}
engines: {node: '>=6.5.0'}
peerDependencies:
eslint: '>=4.19.1'
dependencies:
escape-string-regexp: 1.0.5
eslint: 8.3.0
eslint: 8.5.0
ignore: 5.1.8
dev: false
@@ -2368,7 +2368,7 @@ packages:
htmlparser2: 7.1.2
dev: false
/eslint-plugin-import/2.25.3_eslint@8.3.0:
/eslint-plugin-import/2.25.3_eslint@8.5.0:
resolution: {integrity: sha512-RzAVbby+72IB3iOEL8clzPLzL3wpDrlwjsTBAQXgyp5SeTqqY+0bFubwuo+y/HLhNZcXV4XqTBO4LGsfyHIDXg==}
engines: {node: '>=4'}
peerDependencies:
@@ -2378,7 +2378,7 @@ packages:
array.prototype.flat: 1.2.5
debug: 2.6.9
doctrine: 2.1.0
eslint: 8.3.0
eslint: 8.5.0
eslint-import-resolver-node: 0.3.6
eslint-module-utils: 2.7.1
has: 1.0.3
@@ -2390,26 +2390,26 @@ packages:
tsconfig-paths: 3.11.0
dev: false
/eslint-plugin-jsonc/2.0.0_eslint@8.3.0:
/eslint-plugin-jsonc/2.0.0_eslint@8.5.0:
resolution: {integrity: sha512-5UbUUvx4gUVeF9hJ+SHDW9a4OPQ8vJWu12rttQ76qGO2tlH17OC103CLq+vrmjo5VQULeVzSJ0u4s+jUATJyWQ==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies:
eslint: '>=6.0.0'
dependencies:
eslint: 8.3.0
eslint-utils: 3.0.0_eslint@8.3.0
jsonc-eslint-parser: 2.0.4_eslint@8.3.0
eslint: 8.5.0
eslint-utils: 3.0.0_eslint@8.5.0
jsonc-eslint-parser: 2.0.4_eslint@8.5.0
natural-compare: 1.4.0
dev: false
/eslint-plugin-node/11.1.0_eslint@8.3.0:
/eslint-plugin-node/11.1.0_eslint@8.5.0:
resolution: {integrity: sha512-oUwtPJ1W0SKD0Tr+wqu92c5xuCeQqB3hSCHasn/ZgjFdA9iDGNkNf2Zi9ztY7X+hNuMib23LNGRm6+uN+KLE3g==}
engines: {node: '>=8.10.0'}
peerDependencies:
eslint: '>=5.16.0'
dependencies:
eslint: 8.3.0
eslint-plugin-es: 3.0.1_eslint@8.3.0
eslint: 8.5.0
eslint-plugin-es: 3.0.1_eslint@8.5.0
eslint-utils: 2.1.0
ignore: 5.1.8
minimatch: 3.0.4
@@ -2417,17 +2417,17 @@ packages:
semver: 6.3.0
dev: false
/eslint-plugin-promise/5.1.1_eslint@8.3.0:
resolution: {integrity: sha512-XgdcdyNzHfmlQyweOPTxmc7pIsS6dE4MvwhXWMQ2Dxs1XAL2GJDilUsjWen6TWik0aSI+zD/PqocZBblcm9rdA==}
engines: {node: ^10.12.0 || >=12.0.0}
/eslint-plugin-promise/6.0.0_eslint@8.5.0:
resolution: {integrity: sha512-7GPezalm5Bfi/E22PnQxDWH2iW9GTvAlUNTztemeHb6c1BniSyoeTrM87JkC0wYdi6aQrZX9p2qEiAno8aTcbw==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies:
eslint: ^7.0.0
eslint: ^7.0.0 || ^8.0.0
dependencies:
eslint: 8.3.0
eslint: 8.5.0
dev: false
/eslint-plugin-react/7.27.1_eslint@8.3.0:
resolution: {integrity: sha512-meyunDjMMYeWr/4EBLTV1op3iSG3mjT/pz5gti38UzfM4OPpNc2m0t2xvKCOMU5D6FSdd34BIMFOvQbW+i8GAA==}
/eslint-plugin-react/7.28.0_eslint@8.5.0:
resolution: {integrity: sha512-IOlFIRHzWfEQQKcAD4iyYDndHwTQiCMcJVJjxempf203jnNLUnW34AXLrV33+nEXoifJE2ZEGmcjKPL8957eSw==}
engines: {node: '>=4'}
peerDependencies:
eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8
@@ -2435,7 +2435,7 @@ packages:
array-includes: 3.1.4
array.prototype.flatmap: 1.2.5
doctrine: 2.1.0
eslint: 8.3.0
eslint: 8.5.0
estraverse: 5.3.0
jsx-ast-utils: 2.4.1
minimatch: 3.0.4
@@ -2449,7 +2449,7 @@ packages:
string.prototype.matchall: 4.0.6
dev: false
/eslint-plugin-unicorn/39.0.0_eslint@8.3.0:
/eslint-plugin-unicorn/39.0.0_eslint@8.5.0:
resolution: {integrity: sha512-fd5RK2FtYjGcIx3wra7csIE/wkkmBo22T1gZtRTsLr1Mb+KsFKJ+JOdSqhHXQUrI/JTs/Mon64cEYzTgSCbltw==}
engines: {node: '>=12'}
peerDependencies:
@@ -2458,9 +2458,9 @@ packages:
'@babel/helper-validator-identifier': 7.14.9
ci-info: 3.2.0
clean-regexp: 1.0.0
eslint: 8.3.0
eslint-template-visitor: 2.3.2_eslint@8.3.0
eslint-utils: 3.0.0_eslint@8.3.0
eslint: 8.5.0
eslint-template-visitor: 2.3.2_eslint@8.5.0
eslint-utils: 3.0.0_eslint@8.5.0
esquery: 1.4.0
indent-string: 4.0.0
is-builtin-module: 3.1.0
@@ -2475,29 +2475,29 @@ packages:
- supports-color
dev: false
/eslint-plugin-vue/8.1.1_eslint@8.3.0:
resolution: {integrity: sha512-rx64IrlhdfPya6u2V5ukOGiLCTgaCBdMSpczLVqyo8A0l+Vbo+lzvIfEUfAQ2auj+MF6y0TwxLorzdCIzHunnw==}
/eslint-plugin-vue/8.2.0_eslint@8.5.0:
resolution: {integrity: sha512-cLIdTuOAMXyHeQ4drYKcZfoyzdwdBpH279X8/N0DgmotEI9yFKb5O/cAgoie/CkQZCH/MOmh0xw/KEfS90zY2A==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies:
eslint: ^6.2.0 || ^7.0.0 || ^8.0.0
dependencies:
eslint: 8.3.0
eslint-utils: 3.0.0_eslint@8.3.0
eslint: 8.5.0
eslint-utils: 3.0.0_eslint@8.5.0
natural-compare: 1.4.0
semver: 7.3.5
vue-eslint-parser: 8.0.1_eslint@8.3.0
vue-eslint-parser: 8.0.1_eslint@8.5.0
transitivePeerDependencies:
- supports-color
dev: false
/eslint-plugin-yml/0.12.0_eslint@8.3.0:
/eslint-plugin-yml/0.12.0_eslint@8.5.0:
resolution: {integrity: sha512-aS82M+diohZTusadiByzh/bKDrfi+Y6VBQkD3ym/7JH+KF9WUB9qKCizLfTaCACwtRrHpqaLz3G8GKmslshyiw==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies:
eslint: '>=6.0.0'
dependencies:
debug: 4.3.2
eslint: 8.3.0
eslint: 8.5.0
lodash: 4.17.21
natural-compare: 1.4.0
yaml-eslint-parser: 0.5.0
@@ -2534,17 +2534,17 @@ packages:
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
dependencies:
esrecurse: 4.3.0
estraverse: 5.2.0
estraverse: 5.3.0
dev: true
/eslint-template-visitor/2.3.2_eslint@8.3.0:
/eslint-template-visitor/2.3.2_eslint@8.5.0:
resolution: {integrity: sha512-3ydhqFpuV7x1M9EK52BPNj6V0Kwu0KKkcIAfpUhwHbR8ocRln/oUHgfxQupY8O1h4Qv/POHDumb/BwwNfxbtnA==}
peerDependencies:
eslint: '>=7.0.0'
dependencies:
'@babel/core': 7.13.10
'@babel/eslint-parser': 7.13.10_@babel+core@7.13.10+eslint@8.3.0
eslint: 8.3.0
'@babel/eslint-parser': 7.13.10_@babel+core@7.13.10+eslint@8.5.0
eslint: 8.5.0
eslint-visitor-keys: 2.1.0
esquery: 1.4.0
multimap: 1.1.0
@@ -2559,13 +2559,13 @@ packages:
eslint-visitor-keys: 1.3.0
dev: false
/eslint-utils/3.0.0_eslint@8.3.0:
/eslint-utils/3.0.0_eslint@8.5.0:
resolution: {integrity: sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA==}
engines: {node: ^10.0.0 || ^12.0.0 || >= 14.0.0}
peerDependencies:
eslint: '>=5'
dependencies:
eslint: 8.3.0
eslint: 8.5.0
eslint-visitor-keys: 2.1.0
/eslint-visitor-keys/1.3.0:
@@ -2586,13 +2586,13 @@ packages:
resolution: {integrity: sha512-yWJFpu4DtjsWKkt5GeNBBuZMlNcYVs6vRCLoCVEJrTjaSB6LC98gFipNK/erM2Heg/E8mIK+hXG/pJMLK+eRZA==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
/eslint/8.3.0:
resolution: {integrity: sha512-aIay56Ph6RxOTC7xyr59Kt3ewX185SaGnAr8eWukoPLeriCrvGjvAubxuvaXOfsxhtwV5g0uBOsyhAom4qJdww==}
/eslint/8.5.0:
resolution: {integrity: sha512-tVGSkgNbOfiHyVte8bCM8OmX+xG9PzVG/B4UCF60zx7j61WIVY/AqJECDgpLD4DbbESD0e174gOg3ZlrX15GDg==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
hasBin: true
dependencies:
'@eslint/eslintrc': 1.0.4
'@humanwhocodes/config-array': 0.6.0
'@eslint/eslintrc': 1.0.5
'@humanwhocodes/config-array': 0.9.2
ajv: 6.12.6
chalk: 4.1.0
cross-spawn: 7.0.3
@@ -2601,9 +2601,9 @@ packages:
enquirer: 2.3.6
escape-string-regexp: 4.0.0
eslint-scope: 7.1.0
eslint-utils: 3.0.0_eslint@8.3.0
eslint-utils: 3.0.0_eslint@8.5.0
eslint-visitor-keys: 3.1.0
espree: 9.1.0
espree: 9.2.0
esquery: 1.4.0
esutils: 2.0.3
fast-deep-equal: 3.1.3
@@ -2642,8 +2642,8 @@ packages:
eslint-visitor-keys: 3.1.0
dev: false
/espree/9.1.0:
resolution: {integrity: sha512-ZgYLvCS1wxOczBYGcQT9DDWgicXwJ4dbocr9uYN+/eresBAUuBu+O4WzB21ufQ/JqQT8gyp7hJ3z8SHii32mTQ==}
/espree/9.2.0:
resolution: {integrity: sha512-oP3utRkynpZWF/F2x/HZJ+AGtnIclaR7z1pYPxy7NYM2fSO6LgK/Rkny8anRSPK/VwEA1eqm2squui0T7ZMOBg==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
dependencies:
acorn: 8.6.0
@@ -3585,12 +3585,12 @@ packages:
minimist: 1.2.5
dev: false
/jsonc-eslint-parser/2.0.4_eslint@8.3.0:
/jsonc-eslint-parser/2.0.4_eslint@8.5.0:
resolution: {integrity: sha512-a3ZRus4qea0tSRCW2qvF/spFt7iCpdeJbiDjxbFZRZ87JCF8sI8hbxpVvUBVyZ3fLB/RQnTi+Y/yZbMlqt1BCg==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
dependencies:
acorn: 8.5.0
eslint-utils: 3.0.0_eslint@8.3.0
eslint-utils: 3.0.0_eslint@8.5.0
eslint-visitor-keys: 3.0.0
espree: 9.0.0
semver: 7.3.5
@@ -5493,14 +5493,14 @@ packages:
/tslib/1.13.0:
resolution: {integrity: sha512-i/6DQjL8Xf3be4K/E6Wgpekn5Qasl1usyw++dAA35Ue5orEn65VIxOA+YvNNl9HV3qv70T7CNwjODHZrLwvd1Q==}
/tsutils/3.21.0_typescript@4.5.2:
/tsutils/3.21.0_typescript@4.5.4:
resolution: {integrity: sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==}
engines: {node: '>= 6'}
peerDependencies:
typescript: '>=2.8.0 || >= 3.2.0-dev || >= 3.3.0-dev || >= 3.4.0-dev || >= 3.5.0-dev || >= 3.6.0-dev || >= 3.6.0-beta || >= 3.7.0-dev || >= 3.7.0-beta'
dependencies:
tslib: 1.13.0
typescript: 4.5.2
typescript: 4.5.4
dev: false
/tunnel-agent/0.6.0:
@@ -5558,8 +5558,8 @@ packages:
resolution: {integrity: sha1-hnrHTjhkGHsdPUfZlqeOxciDB3c=}
dev: true
/typescript/4.5.2:
resolution: {integrity: sha512-5BlMof9H1yGt0P8/WF+wPNw6GfctgGjXp5hkblpyT+8rkASSmkUKMXrxR0Xg8ThVCi/JnHQiKXeBaEwCeQwMFw==}
/typescript/4.5.4:
resolution: {integrity: sha512-VgYs2A2QIRuGphtzFV7aQJduJ2gyfTljngLzjpfW9FoYZF6xuw1W0vW9ghCKLfcWrCFxK81CSGRAvS1pn4fIUg==}
engines: {node: '>=4.2.0'}
hasBin: true
dev: true
@@ -5661,17 +5661,17 @@ packages:
extsprintf: 1.3.0
dev: true
/vue-eslint-parser/8.0.1_eslint@8.3.0:
/vue-eslint-parser/8.0.1_eslint@8.5.0:
resolution: {integrity: sha512-lhWjDXJhe3UZw2uu3ztX51SJAPGPey1Tff2RK3TyZURwbuI4vximQLzz4nQfCv8CZq4xx7uIiogHMMoSJPr33A==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies:
eslint: '>=6.0.0'
dependencies:
debug: 4.3.2
eslint: 8.3.0
eslint: 8.5.0
eslint-scope: 6.0.0
eslint-visitor-keys: 3.1.0
espree: 9.1.0
espree: 9.2.0
esquery: 1.4.0
lodash: 4.17.21
semver: 7.3.5