mirror of https://github.com/Fabio286/antares.git
Merge pull request #131 from Fabio286/dependabot/npm_and_yarn/eslint-plugin-vue-8.0.3
build(deps-dev): bump eslint-plugin-vue from 7.20.0 to 8.0.3
This commit is contained in:
commit
13adf0a767
|
@ -45,6 +45,7 @@
|
||||||
"no-console": "off",
|
"no-console": "off",
|
||||||
"no-undef": "off",
|
"no-undef": "off",
|
||||||
"vue/no-side-effects-in-computed-properties": "off",
|
"vue/no-side-effects-in-computed-properties": "off",
|
||||||
|
"vue/multi-word-component-names": "off",
|
||||||
"vue/require-default-prop": "off",
|
"vue/require-default-prop": "off",
|
||||||
"vue/comment-directive": "off",
|
"vue/comment-directive": "off",
|
||||||
"vue/no-v-html": "off",
|
"vue/no-v-html": "off",
|
||||||
|
@ -61,10 +62,11 @@
|
||||||
"vue/max-attributes-per-line": [
|
"vue/max-attributes-per-line": [
|
||||||
"error",
|
"error",
|
||||||
{
|
{
|
||||||
"singleline": 2,
|
"singleline": {
|
||||||
|
"max": 2
|
||||||
|
},
|
||||||
"multiline": {
|
"multiline": {
|
||||||
"max": 1,
|
"max": 1
|
||||||
"allowFirstLine": false
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
"name": "antares",
|
"name": "antares",
|
||||||
"productName": "Antares",
|
"productName": "Antares",
|
||||||
"version": "0.3.8",
|
"version": "0.3.8",
|
||||||
"description": "A cross-platform easy to use SQL client.",
|
"description": "A modern, fast and productivity driven SQL client with a focus in UX.",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"repository": "https://github.com/Fabio286/antares.git",
|
"repository": "https://github.com/Fabio286/antares.git",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
|
@ -139,7 +139,7 @@
|
||||||
"eslint-plugin-import": "^2.24.2",
|
"eslint-plugin-import": "^2.24.2",
|
||||||
"eslint-plugin-node": "^11.1.0",
|
"eslint-plugin-node": "^11.1.0",
|
||||||
"eslint-plugin-promise": "^5.1.0",
|
"eslint-plugin-promise": "^5.1.0",
|
||||||
"eslint-plugin-vue": "^7.18.0",
|
"eslint-plugin-vue": "^8.0.3",
|
||||||
"file-loader": "^6.2.0",
|
"file-loader": "^6.2.0",
|
||||||
"html-webpack-plugin": "^5.5.0",
|
"html-webpack-plugin": "^5.5.0",
|
||||||
"mini-css-extract-plugin": "^2.4.3",
|
"mini-css-extract-plugin": "^2.4.3",
|
||||||
|
@ -160,4 +160,4 @@
|
||||||
"webpack-cli": "^4.9.1",
|
"webpack-cli": "^4.9.1",
|
||||||
"webpack-dev-server": "^3.11.2"
|
"webpack-dev-server": "^3.11.2"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -89,7 +89,7 @@
|
||||||
:type="inputProps().type"
|
:type="inputProps().type"
|
||||||
:disabled="!isChecked"
|
:disabled="!isChecked"
|
||||||
>
|
>
|
||||||
<template v-if="methodData && 'params' in methodData" class="columns">
|
<template v-if="methodData && 'params' in methodData">
|
||||||
<input
|
<input
|
||||||
v-for="(option, key) in methodData.params"
|
v-for="(option, key) in methodData.params"
|
||||||
:key="key"
|
:key="key"
|
||||||
|
|
|
@ -62,7 +62,7 @@
|
||||||
v-if="resultsWithRows[resultsetIndex] && resultsWithRows[resultsetIndex].rows"
|
v-if="resultsWithRows[resultsetIndex] && resultsWithRows[resultsetIndex].rows"
|
||||||
ref="resultTable"
|
ref="resultTable"
|
||||||
:items="sortedResults"
|
:items="sortedResults"
|
||||||
:item-height="22"
|
:item-height="23"
|
||||||
class="tbody"
|
class="tbody"
|
||||||
:visible-height="resultsSize"
|
:visible-height="resultsSize"
|
||||||
:scroll-element="scrollElement"
|
:scroll-element="scrollElement"
|
||||||
|
|
Loading…
Reference in New Issue