it-tools/.eslintrc.js

18 lines
354 B
JavaScript
Raw Normal View History

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',
'no-undef': 'off' // will be catch by the tsc compiler
2020-12-21 22:49:27 +01:00
}
2020-12-21 22:06:13 +01:00
}