mirror of https://github.com/nocodb/nocodb
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
474 B
26 lines
474 B
3 years ago
|
{
|
||
|
"root": true,
|
||
|
"parser": "vue-eslint-parser",
|
||
|
"ignorePatterns": [
|
||
|
"node_modules",
|
||
|
".nuxt",
|
||
|
"dist",
|
||
|
"static"
|
||
|
],
|
||
|
"extends": [
|
||
|
"@nuxtjs",
|
||
|
"plugin:@intlify/vue-i18n/recommended"
|
||
|
],
|
||
|
"rules": {
|
||
|
"no-console": "off",
|
||
|
// "space-before-function-paren": "off",
|
||
|
"require-await": "off",
|
||
|
"vue/no-mutating-props": "off"
|
||
|
},
|
||
|
"parserOptions": {
|
||
|
"parser": "babel-eslint",
|
||
|
"ecmaVersion": 8,
|
||
|
"sourceType": "module"
|
||
|
}
|
||
|
}
|