Newer
Older
Sébastien DA ROCHA
committed
module.exports = {
root: true,
env: {
node: true,
commonjs: true,
browser: true
Sébastien DA ROCHA
committed
},
parserOptions: {
},
extends: [
'eslint:recommended',
'plugin:vue/recommended'
],
rules: {
'as-needed'
],
'object-curly-spacing': [
'always',
{
arraysInObjects: true,
objectsInObjects: true
}
],
indent: [

Timothee P
committed
process.platform === 'win32' ? 'windows' : 'unix'
'single',
{
avoidEscape: true
}
],
'max-len': [
{
code: 120,
tabWidth: 2,
ignoreComments: true,
ignoreTrailingComments: true,
ignoreUrls: true,
ignoreStrings: true,
ignoreTemplateLiterals: true,
ignoreRegExpLiterals: true
}
]
Sébastien DA ROCHA
committed
}