diff client/.eslintrc.js @ 990:3907a7b98067

linted/fixed code format (yarn run lint)
author Markus Kottlaender <markus@intevation.de>
date Mon, 22 Oct 2018 10:21:22 +0200
parents 88d0d60924cf
children
line wrap: on
line diff
--- a/client/.eslintrc.js	Sat Oct 20 19:27:33 2018 +0200
+++ b/client/.eslintrc.js	Mon Oct 22 10:21:22 2018 +0200
@@ -3,15 +3,12 @@
   env: {
     node: true
   },
-  'extends': [
-    'plugin:vue/essential',
-    '@vue/prettier'
-  ],
+  extends: ["plugin:vue/essential", "@vue/prettier"],
   rules: {
-    'no-console': process.env.NODE_ENV === 'production' ? 'error' : 'off',
-    'no-debugger': process.env.NODE_ENV === 'production' ? 'error' : 'off'
+    "no-console": process.env.NODE_ENV === "production" ? "error" : "off",
+    "no-debugger": process.env.NODE_ENV === "production" ? "error" : "off"
   },
   parserOptions: {
-    parser: 'babel-eslint'
+    parser: "babel-eslint"
   }
-}
\ No newline at end of file
+};