FIX: Package.json

This commit is contained in:
Robert Kossessa
2024-02-05 13:02:03 +01:00
parent 374041945b
commit 7d5c10de1c
3 changed files with 59 additions and 59 deletions

View File

@@ -62,5 +62,64 @@
"prettier": "3.2.4",
"tailwindcss": "^3.4.1"
},
"eslintConfig": {
"root": true,
"env": {
"node": true
},
"parserOptions": {
"parser": "@babel/eslint-parser",
"ecmaVersion": 2020,
"requireConfigFile": false
},
"extends": [
"eslint:recommended",
"plugin:vue/vue3-recommended",
"plugin:@intlify/vue-i18n/recommended",
"prettier"
],
"settings": {
"vue-i18n": {
"localeDir": "@/lang/*.{json,json5,yaml,yml}",
"messageSyntaxVersion": "^9.0.0"
}
},
"rules": {
"indent": "off",
"camelcase": "off",
"space-before-function-paren": "off",
"object-curly-spacing": "off",
"comma-dangle": "off",
"vue/html-self-closing": "warn",
"@intlify/vue-i18n/no-v-html": "off",
"@intlify/vue-i18n/no-dynamic-keys": "off",
"@intlify/vue-i18n/no-raw-text": [
"warn",
{
"ignorePattern": "^(([\\W\\d]+)|(http.*))|()$",
"ignoreNodes": [
"code"
]
}
],
"@intlify/vue-i18n/no-unused-keys": [
"error",
{
"extensions": [
".js",
".ts",
".vue"
]
}
]
}
},
"prettier": {
"trailingComma": "es5",
"printWidth": 120,
"tabWidth": 2,
"semi": false,
"singleQuote": true
},
"web-types": "./web-types.json"
}