Derick Montague | a2988f4 | 2020-01-17 13:46:30 -0600 | [diff] [blame] | 1 | module.exports = { |
2 | root: true, | ||||
3 | env: { | ||||
4 | node: true | ||||
5 | }, | ||||
6 | extends: ["plugin:vue/essential", "@vue/prettier"], | ||||
7 | rules: { | ||||
8 | "no-console": "off", | ||||
9 | "no-debugger": process.env.NODE_ENV === "production" ? "error" : "off" | ||||
10 | }, | ||||
11 | parserOptions: { | ||||
12 | parser: "babel-eslint" | ||||
13 | }, | ||||
14 | overrides: [ | ||||
15 | { | ||||
16 | files: [ | ||||
17 | "**/__tests__/*.{j,t}s?(x)", | ||||
18 | "**/tests/unit/**/*.spec.{j,t}s?(x)" | ||||
19 | ], | ||||
20 | env: { | ||||
21 | jest: true | ||||
22 | } | ||||
23 | } | ||||
24 | ] | ||||
25 | }; |