Skip to content

Instantly share code, notes, and snippets.

@cihat
Created August 11, 2021 12:24
Show Gist options
  • Select an option

  • Save cihat/ec16739948ba34ea8c3541d07ba28acb to your computer and use it in GitHub Desktop.

Select an option

Save cihat/ec16739948ba34ea8c3541d07ba28acb to your computer and use it in GitHub Desktop.
module.exports = {
root: true,
env: {
node: true
},
extends: [
// "plugin:vue/base"
"plugin:vue/recommended"
// "plugin:vue/essential",
// "plugin:vue/strongly-recommended"
],
parserOptions: {
parser: "babel-eslint"
},
rules: {
"no-console": process.env.NODE_ENV === "production" ? "warn" : "off",
"no-debugger": process.env.NODE_ENV === "production" ? "warn" : "off"
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment