12 lines
202 B
JavaScript
12 lines
202 B
JavaScript
// https://eslint.org/docs/user-guide/configuring
|
|
|
|
module.exports = {
|
|
extends: [
|
|
'eslint:recommended',
|
|
'plugin:vue/essential'
|
|
],
|
|
rules: {
|
|
'no-console': 'off'
|
|
}
|
|
}
|