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.
27 lines
463 B
27 lines
463 B
{ |
|
"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": [ |
|
"error", |
|
"never" |
|
], |
|
"require-await": "off" |
|
}, |
|
"parserOptions": { |
|
"parser": "babel-eslint", |
|
"ecmaVersion": 8, |
|
"sourceType": "module" |
|
} |
|
}
|
|
|