From 341baa5e3b0abe0ae4d8fda57846a04d58070950 Mon Sep 17 00:00:00 2001 From: Ulf Gebhardt Date: Sat, 18 May 2019 15:43:26 +0200 Subject: [PATCH] fixed lint rules --- backend/.eslintrc.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/backend/.eslintrc.js b/backend/.eslintrc.js index 0028743f8..0000bb066 100644 --- a/backend/.eslintrc.js +++ b/backend/.eslintrc.js @@ -2,7 +2,7 @@ module.exports = { env: { es6: true, node: true, - 'jest/globals': true + jest: true }, parserOptions: { parser: 'babel-eslint' @@ -15,8 +15,8 @@ module.exports = { 'jest' ], rules: { - 'indent': [ 'error', 2 ], - 'quotes': [ "error", "single"], + //'indent': [ 'error', 2 ], + //'quotes': [ "error", "single"], // 'no-console': process.env.NODE_ENV === 'production' ? 'error' : 'off', 'no-console': ['error'], 'no-debugger': process.env.NODE_ENV === 'production' ? 'error' : 'off',