mirror of
https://github.com/garethgeorge/backrest.git
synced 2025-12-12 00:35:34 +00:00
10 lines
239 B
JavaScript
10 lines
239 B
JavaScript
module.exports = {
|
|
root: true,
|
|
extends: ["@nuxt/eslint-config"],
|
|
ignorePatterns: ["dist", "node_modules", ".output", ".nuxt"],
|
|
rules: {
|
|
"vue/max-attributes-per-line": "off",
|
|
"vue/multi-word-component-names": "off",
|
|
},
|
|
};
|