From 7e1611ff7afba0a014480218370686566c9cc0e6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ond=C5=99ej=20Hru=C5=A1ka?= Date: Sun, 10 Sep 2017 13:05:32 +0200 Subject: [PATCH] eslit disable false positives and camelcase requirement --- .eslintrc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.eslintrc b/.eslintrc index 59f3057..14983b6 100644 --- a/.eslintrc +++ b/.eslintrc @@ -31,7 +31,7 @@ "arrow-spacing": ["error", { "before": true, "after": true }], "block-spacing": ["error", "always"], "brace-style": ["error", "1tbs", { "allowSingleLine": true }], - "camelcase": ["error", { "properties": "never" }], + "camelcase": ["off", { "properties": "never" }], "comma-dangle": ["error", { "arrays": "never", "objects": "never", @@ -126,7 +126,7 @@ "no-this-before-super": "error", "no-throw-literal": "error", "no-trailing-spaces": "error", - "no-undef": "error", + "no-undef": "off", "no-undef-init": "error", "no-unexpected-multiline": "error", "no-unmodified-loop-condition": "error",