mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-16 18:42:30 +03:00
15 lines
318 B
JavaScript
15 lines
318 B
JavaScript
|
module.exports = {
|
||
|
root: true,
|
||
|
env: {
|
||
|
node: true
|
||
|
},
|
||
|
extends: ["plugin:vue/essential"],
|
||
|
rules: {
|
||
|
"no-console": process.env.NODE_ENV === "production" ? "error" : "off",
|
||
|
"no-debugger": process.env.NODE_ENV === "production" ? "error" : "off"
|
||
|
},
|
||
|
parserOptions: {
|
||
|
parser: "babel-eslint"
|
||
|
}
|
||
|
};
|