mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-04-24 16:56:14 -04:00
15 lines
259 B
JavaScript
15 lines
259 B
JavaScript
module.exports = {
|
|
root: true,
|
|
env: {
|
|
browser: true,
|
|
node: true
|
|
},
|
|
extends: [
|
|
'@nuxtjs/eslint-config-typescript',
|
|
'plugin:nuxt/recommended'
|
|
],
|
|
// add your custom rules here
|
|
rules: {
|
|
'space-before-function-paren': 'off'
|
|
}
|
|
}
|