DigitalConsumer.ISS/.eslintrc.js
Johan Gunawan be2787ee2e Add eslint
Add eslint and the configuration needed to lint javascript and vue files.
2022-12-08 11:37:15 -05:00

17 lines
No EOL
302 B
JavaScript

module.exports = {
extends: [
'eslint-config-airbnb-base',
'plugin:vue/vue3-strongly-recommended'
],
rules: {
'linebreak-style': 'off'
},
settings: {
'import/resolver': {
alias: {
map: [['@', './src/']],
extensions: ['.js', '.vue']
}
}
}
};