summaryrefslogtreecommitdiff
path: root/.eslintrc.js
diff options
context:
space:
mode:
Diffstat (limited to '.eslintrc.js')
-rw-r--r--.eslintrc.js12
1 files changed, 6 insertions, 6 deletions
diff --git a/.eslintrc.js b/.eslintrc.js
index 8d83430f..2e8a358a 100644
--- a/.eslintrc.js
+++ b/.eslintrc.js
@@ -3,19 +3,19 @@ module.exports = {
env: {
node: true
},
- extends: ["plugin:vue/essential", "@vue/prettier"],
+ extends: ['plugin:vue/essential', '@vue/prettier'],
rules: {
- "no-console": "off",
- "no-debugger": process.env.NODE_ENV === "production" ? "error" : "off"
+ 'no-console': 'off',
+ 'no-debugger': process.env.NODE_ENV === 'production' ? 'error' : 'off'
},
parserOptions: {
- parser: "babel-eslint"
+ parser: 'babel-eslint'
},
overrides: [
{
files: [
- "**/__tests__/*.{j,t}s?(x)",
- "**/tests/unit/**/*.spec.{j,t}s?(x)"
+ '**/__tests__/*.{j,t}s?(x)',
+ '**/tests/unit/**/*.spec.{j,t}s?(x)'
],
env: {
jest: true