diff options
author | Bastien Wirtz <bastien.wirtz@gmail.com> | 2020-05-25 15:07:03 -0700 |
---|---|---|
committer | Bastien Wirtz <bastien.wirtz@gmail.com> | 2020-05-25 15:07:03 -0700 |
commit | b9c5fcf085bed9c6100283133531b36bfbb06cf0 (patch) | |
tree | 7baa4d16c9d6c06745727c7c273065a29b8fc1d7 /.eslintrc.js | |
parent | ab7ac44c191e3b7dea696e76b74097e23f73b18c (diff) | |
download | homer-b9c5fcf085bed9c6100283133531b36bfbb06cf0.tar.gz homer-b9c5fcf085bed9c6100283133531b36bfbb06cf0.tar.zst homer-b9c5fcf085bed9c6100283133531b36bfbb06cf0.zip |
Build system integration using vue-cli.
Diffstat (limited to '.eslintrc.js')
-rw-r--r-- | .eslintrc.js | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/.eslintrc.js b/.eslintrc.js new file mode 100644 index 0000000..2ac7400 --- /dev/null +++ b/.eslintrc.js | |||
@@ -0,0 +1,15 @@ | |||
1 | module.exports = { | ||
2 | root: true, | ||
3 | env: { | ||
4 | node: true, | ||
5 | }, | ||
6 | extends: ["plugin:vue/essential", "eslint:recommended", "@vue/prettier"], | ||
7 | parserOptions: { | ||
8 | parser: "babel-eslint", | ||
9 | }, | ||
10 | rules: { | ||
11 | "no-console": "off", | ||
12 | "no-debugger": process.env.NODE_ENV === "production" ? "warn" : "off", | ||
13 | "vue/require-v-for-key": "off", | ||
14 | }, | ||
15 | }; | ||