mirror of
https://github.com/gotson/komga.git
synced 2025-12-21 16:03:03 +01:00
build(webui): more eslint mumbo jumbo
This commit is contained in:
parent
3d77660ee6
commit
3fb24cba26
3 changed files with 5 additions and 5 deletions
|
|
@ -48,14 +48,14 @@
|
|||
"@vue/cli-plugin-unit-jest": "^4.5.15",
|
||||
"@vue/cli-plugin-vuex": "^4.5.15",
|
||||
"@vue/cli-service": "^4.5.15",
|
||||
"@vue/eslint-config-standard": "^6.1.0",
|
||||
"@vue/eslint-config-standard": "^5.1.2",
|
||||
"@vue/eslint-config-typescript": "^8.0.0",
|
||||
"@vue/test-utils": "1.3.0",
|
||||
"eslint": "^7.32.0",
|
||||
"eslint-plugin-import": "^2.25.3",
|
||||
"eslint-plugin-node": "^11.1.0",
|
||||
"eslint-plugin-promise": "^5.2.0",
|
||||
"eslint-plugin-vue": "^7.20.0",
|
||||
"eslint-plugin-vue": "^7.12.1",
|
||||
"html-webpack-inject-attributes-plugin": "^1.0.6",
|
||||
"jest-canvas-mock": "^2.3.1",
|
||||
"sass": "^1.32.13",
|
||||
|
|
|
|||
|
|
@ -413,6 +413,7 @@ export default Vue.extend({
|
|||
authorSearchResultsFull(): string[] {
|
||||
// merge local values with server search, so that already input value is available
|
||||
const local = (this.$_.values(this.form.authors).flat()) as unknown as string[]
|
||||
// eslint-disable-next-line vue/no-side-effects-in-computed-properties
|
||||
return this.$_.sortBy(this.$_.union(local, this.authorSearchResults), x => x.toLowerCase())
|
||||
},
|
||||
dialogTitle(): string {
|
||||
|
|
|
|||
|
|
@ -14,8 +14,7 @@
|
|||
"webpack-env",
|
||||
"jest",
|
||||
"vuetify",
|
||||
"webpack",
|
||||
"webpack-env"
|
||||
"webpack"
|
||||
],
|
||||
"paths": {
|
||||
"@/*": [
|
||||
|
|
|
|||
Loading…
Reference in a new issue