From 76b25f78cfd395be1c39a049395a225307b0945a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mariusz=20Szczepan=CC=81czyk?= Date: Mon, 18 Mar 2019 08:14:43 +0100 Subject: [PATCH] Lint nonexistent code --- .eslintrc.json | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 .eslintrc.json diff --git a/.eslintrc.json b/.eslintrc.json new file mode 100644 index 0000000..9c0eeb1 --- /dev/null +++ b/.eslintrc.json @@ -0,0 +1,12 @@ +{ + "rules": { + "complexity": ["error", 0], + "max-depth": ["error", 0], + "max-len": ["error", 0], + "max-lines": ["error", 0], + "max-lines-per-function": ["error", 0], + "max-nested-callbacks": ["error", 0], + "max-params": ["error", 0], + "max-statements": ["error", 0] + } +}