You've already forked AstralRinth
forked from didirus/AstralRinth
19 lines
430 B
JSON
19 lines
430 B
JSON
{
|
|
"extends": ["@nuxt/eslint-config", "plugin:prettier/recommended", "prettier"],
|
|
"env": {
|
|
"browser": true,
|
|
"node": true
|
|
},
|
|
"ignorePatterns": [".nuxt/**", ".output/**", "node_modules"],
|
|
"overrides": [
|
|
{
|
|
"files": ["*.ts", "*.tsx", "*.js", "*.jsx", "*.vue"],
|
|
"rules": {
|
|
"no-console": "off",
|
|
"vue/no-v-html": "off",
|
|
"vue/multi-word-component-names": "off"
|
|
}
|
|
}
|
|
]
|
|
}
|