I keep getting the error in the title when i try build or serve the vuejs build. Not quite sure on what "no-layout-rules" is about. The only reference to it that I could find was on eslint repo here: https://github.com/prettier/eslint-config-prettier/blob/master/vue.js.
odule.exports = {
root: true,
env: {
node: true
},
extends: ["plugin:vue/essential", "@vue/prettier"],
rules: {
"no-console": process.env.NODE_ENV === "production" ? "error" : "off",
"no-debugger": process.env.NODE_ENV === "production" ? "error" : "off"
},
parserOptions: {
parser: "babel-eslint"
}
};