DigitalConsumer.ISS/.eslintrc.js
Johan Gunawan 7e294fa91d Use camelCase
Use camelCase for component tag and when passing props to match the style in Concept Funnel.
2023-01-06 14:47:07 -05:00

21 lines
No EOL
514 B
JavaScript

module.exports = {
extends: [
'eslint-config-airbnb-base',
'plugin:vue/vue3-strongly-recommended'
],
rules: {
'linebreak-style': 'off',
'vue/component-definition-name-casing': ['warn', 'kebab-case'],
'vue/require-default-prop': 'off',
'vue/attribute-hyphenation': ['warn', 'never'],
'vue/v-on-event-hyphenation': ['warn', 'never']
},
settings: {
'import/resolver': {
alias: {
map: [['@', './src/']],
extensions: ['.js', '.vue']
}
}
}
};