chore(deps): update dependency eslint-plugin-vue to v8 (#4105)

Co-authored-by: Renovate Bot <bot@renovateapp.com>
Co-authored-by: Kevin <sxzz@sxzz.moe>
This commit is contained in:
renovate[bot] 2021-10-30 18:13:00 +08:00 committed by GitHub
parent dbdab2cbd7
commit 5b5e9ab81d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
10 changed files with 38 additions and 60 deletions

View File

@ -75,6 +75,7 @@ module.exports = defineConfig({
'vue/no-v-html': 'off',
'vue/require-default-prop': 'off',
'vue/require-explicit-emits': 'off',
'vue/multi-word-component-names': 'off',
// prettier
'prettier/prettier': 'error',

View File

@ -1,7 +1,9 @@
module.exports = {
const { defineConfig } = require('eslint-define-config')
module.exports = defineConfig({
rules: {
'no-console': 'off',
'no-unused-vars': 'off',
'@typescript-eslint/no-unused-vars': 'off',
},
}
})

View File

@ -1,3 +0,0 @@
{
extends: ['config:js-app', ':prHourlyLimitNone'],
}

View File

@ -94,7 +94,7 @@
"eslint-define-config": "1.1.2",
"eslint-plugin-import": "2.25.2",
"eslint-plugin-prettier": "4.0.0",
"eslint-plugin-vue": "7.20.0",
"eslint-plugin-vue": "8.0.3",
"expect-type": "0.13.0",
"fast-glob": "3.2.7",
"gulp": "4.0.2",

View File

@ -608,7 +608,9 @@ export default defineComponent({
watch([checkedNodes, isDisabled], calculatePresentTags)
watch(presentTags, () => nextTick(updateStyle))
watch(presentTags, () => {
nextTick(() => updateStyle())
})
watch(presentText, (val) => (inputValue.value = val), { immediate: true })

View File

@ -214,10 +214,9 @@ export default defineComponent({
}
}
}
const handleResize = () =>
nextTick(() => {
instance.proxy!.$forceUpdate()
})
const handleResize = () => {
nextTick(() => instance.proxy!.$forceUpdate())
}
watch(
() => props.defaultActive,

View File

@ -9,7 +9,7 @@
:disabled="disabled"
:model-value="innerValue"
type="number"
@update:modelValue="handleInput"
@update:model-value="handleInput"
@change="handleChange"
/>
{{ t('el.pagination.pageClassifier') }}

View File

@ -21,7 +21,7 @@
:max="max"
:debounce="debounce"
:size="inputSize"
@update:modelValue="setFirstValue"
@update:model-value="setFirstValue"
@change="emitChange"
/>
<div
@ -37,7 +37,7 @@
:model-value="firstValue"
:vertical="vertical"
:tooltip-class="tooltipClass"
@update:modelValue="setFirstValue"
@update:model-value="setFirstValue"
/>
<slider-button
v-if="range"
@ -45,7 +45,7 @@
:model-value="secondValue"
:vertical="vertical"
:tooltip-class="tooltipClass"
@update:modelValue="setSecondValue"
@update:model-value="setSecondValue"
/>
<div v-if="showStops">
<div

View File

@ -44,7 +44,7 @@ importers:
eslint-define-config: 1.1.2
eslint-plugin-import: 2.25.2
eslint-plugin-prettier: 4.0.0
eslint-plugin-vue: 7.20.0
eslint-plugin-vue: 8.0.3
expect-type: 0.13.0
fast-glob: 3.2.7
gulp: 4.0.2
@ -120,7 +120,7 @@ importers:
eslint-define-config: 1.1.2
eslint-plugin-import: 2.25.2_eslint@8.1.0
eslint-plugin-prettier: 4.0.0_850528f9ec3c0797b9b19a94a36b5ba3
eslint-plugin-vue: 7.20.0_eslint@8.1.0
eslint-plugin-vue: 8.0.3_eslint@8.1.0
expect-type: 0.13.0
fast-glob: 3.2.7
gulp: 4.0.2
@ -2219,14 +2219,6 @@ packages:
acorn-walk: 7.2.0
dev: true
/acorn-jsx/5.3.2_acorn@7.4.1:
resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==}
peerDependencies:
acorn: ^6.0.0 || ^7.0.0 || ^8.0.0
dependencies:
acorn: 7.4.1
dev: true
/acorn-jsx/5.3.2_acorn@8.5.0:
resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==}
peerDependencies:
@ -4320,17 +4312,17 @@ packages:
prettier-linter-helpers: 1.0.0
dev: true
/eslint-plugin-vue/7.20.0_eslint@8.1.0:
resolution: {integrity: sha512-oVNDqzBC9h3GO+NTgWeLMhhGigy6/bQaQbHS+0z7C4YEu/qK/yxHvca/2PTZtGNPsCrHwOTgKMrwu02A9iPBmw==}
engines: {node: '>=8.10'}
/eslint-plugin-vue/8.0.3_eslint@8.1.0:
resolution: {integrity: sha512-Rlhhy5ltzde0sRwSkqHuNePTXLMMaJ5+qsQubM4RYloYsQ8cXlnJT5MDaCzSirkGADipOHtmQXIbbPFAzUrADg==}
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.1.0
eslint-utils: 2.1.0
eslint-utils: 3.0.0_eslint@8.1.0
natural-compare: 1.4.0
semver: 6.3.0
vue-eslint-parser: 7.11.0_eslint@8.1.0
semver: 7.3.5
vue-eslint-parser: 8.0.1_eslint@8.1.0
transitivePeerDependencies:
- supports-color
dev: true
@ -4351,13 +4343,6 @@ packages:
estraverse: 5.2.0
dev: true
/eslint-utils/2.1.0:
resolution: {integrity: sha512-w94dQYoauyvlDc43XnGB8lU3Zt713vNChgt4EWwhXAP2XkBvndfxF0AgIqKOOasjPIPzj9JqgwkwbCYD0/V3Zg==}
engines: {node: '>=6'}
dependencies:
eslint-visitor-keys: 1.3.0
dev: true
/eslint-utils/3.0.0_eslint@8.1.0:
resolution: {integrity: sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA==}
engines: {node: ^10.0.0 || ^12.0.0 || >= 14.0.0}
@ -4368,11 +4353,6 @@ packages:
eslint-visitor-keys: 2.1.0
dev: true
/eslint-visitor-keys/1.3.0:
resolution: {integrity: sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ==}
engines: {node: '>=4'}
dev: true
/eslint-visitor-keys/2.1.0:
resolution: {integrity: sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==}
engines: {node: '>=10'}
@ -4430,15 +4410,6 @@ packages:
- supports-color
dev: true
/espree/6.2.1:
resolution: {integrity: sha512-ysCxRQY3WaXJz9tdbWOwuWr5Y/XrPTGX9Kiz3yoUXwW0VZ4w30HTkQLaGx/+ttFjF8i+ACbArnB4ce68a9m5hw==}
engines: {node: '>=6.0.0'}
dependencies:
acorn: 7.4.1
acorn-jsx: 5.3.2_acorn@7.4.1
eslint-visitor-keys: 1.3.0
dev: true
/espree/9.0.0:
resolution: {integrity: sha512-r5EQJcYZ2oaGbeR0jR0fFVijGOcwai07/690YRXLINuhmVeRY4UKSAsQPe/0BNuDgwP7Ophoc1PRsr2E3tkbdQ==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
@ -10337,20 +10308,20 @@ packages:
vue: 3.2.20
dev: false
/vue-eslint-parser/7.11.0_eslint@8.1.0:
resolution: {integrity: sha512-qh3VhDLeh773wjgNTl7ss0VejY9bMMa0GoDG2fQVyDzRFdiU3L7fw74tWZDHNQXdZqxO3EveQroa9ct39D2nqg==}
engines: {node: '>=8.10'}
/vue-eslint-parser/8.0.1_eslint@8.1.0:
resolution: {integrity: sha512-lhWjDXJhe3UZw2uu3ztX51SJAPGPey1Tff2RK3TyZURwbuI4vximQLzz4nQfCv8CZq4xx7uIiogHMMoSJPr33A==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies:
eslint: '>=5.0.0'
eslint: '>=6.0.0'
dependencies:
debug: 4.3.2
eslint: 8.1.0
eslint-scope: 5.1.1
eslint-visitor-keys: 1.3.0
espree: 6.2.1
eslint-scope: 6.0.0
eslint-visitor-keys: 3.0.0
espree: 9.0.0
esquery: 1.4.0
lodash: 4.17.21
semver: 6.3.0
semver: 7.3.5
transitivePeerDependencies:
- supports-color
dev: true

View File

@ -1,3 +1,9 @@
{
extends: ['config:js-lib', ':prHourlyLimitNone'],
packageRules: [
{
matchPaths: ['docs/package.json'],
extends: ['config:js-app'],
},
],
}