it-tools/.eslintrc.js

16 lines
259 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: {
'space-before-function-paren': 'off'
}
2020-12-21 22:06:13 +01:00
}