2020-12-21 22:06:13 +01:00
|
|
|
module.exports = {
|
|
|
|
root: true,
|
|
|
|
env: {
|
|
|
|
browser: true,
|
2020-12-21 22:49:27 +01:00
|
|
|
node: true
|
2020-12-21 22:06:13 +01:00
|
|
|
},
|
|
|
|
extends: [
|
|
|
|
'@nuxtjs/eslint-config-typescript',
|
2020-12-21 22:49:27 +01:00
|
|
|
'plugin:nuxt/recommended'
|
2020-12-21 22:06:13 +01:00
|
|
|
],
|
|
|
|
// add your custom rules here
|
2020-12-21 22:49:27 +01:00
|
|
|
rules: {
|
2021-02-06 11:14:28 +01:00
|
|
|
'space-before-function-paren': 'off',
|
|
|
|
'object-curly-spacing': 'off',
|
2021-05-21 22:51:09 +02:00
|
|
|
'no-undef': 'off', // will be catch by the tsc compiler
|
|
|
|
'vue/no-v-html': 'off'
|
2020-12-21 22:49:27 +01:00
|
|
|
}
|
2020-12-21 22:06:13 +01:00
|
|
|
}
|