mirror of
https://github.com/ArthurDanjou/ui.git
synced 2026-01-21 15:31:46 +01:00
16 lines
352 B
JavaScript
16 lines
352 B
JavaScript
module.exports = {
|
|
root: true,
|
|
extends: ['@nuxt/eslint-config'],
|
|
rules: {
|
|
'semi': ['error', 'never'],
|
|
'comma-dangle': ['error', 'never'],
|
|
'space-before-function-paren': ['error', 'always'],
|
|
'vue/multi-word-component-names': 0,
|
|
'vue/max-attributes-per-line': ['error', {
|
|
singleline: {
|
|
max: 5
|
|
}
|
|
}]
|
|
}
|
|
}
|