mirror of
https://github.com/ArthurDanjou/ui.git
synced 2026-01-23 08:20:39 +01:00
Co-authored-by: Tom Smith <tom.smith2711@gmail.com> Co-authored-by: Benjamin Canac <canacb1@gmail.com> Co-authored-by: Tom Smith <tom.smith@qunifi.com>
15 lines
320 B
JavaScript
15 lines
320 B
JavaScript
module.exports = {
|
|
root: true,
|
|
extends: ['@nuxt/eslint-config'],
|
|
rules: {
|
|
'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
|
|
}
|
|
}]
|
|
}
|
|
}
|