From 5d7ce2f7f6191b30be287e3e75c65b0117308f9c Mon Sep 17 00:00:00 2001 From: r3nanp Date: Sat, 13 Feb 2021 10:52:08 -0300 Subject: [PATCH] chore(linter): add linter configuration --- .eslintignore | 3 +++ .eslintrc.json | 3 ++- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/.eslintignore b/.eslintignore index 0069bdb..8730547 100644 --- a/.eslintignore +++ b/.eslintignore @@ -7,3 +7,6 @@ bower_components node_modules yarn-error.log yarn.lock + +src/*.ts +/*.js diff --git a/.eslintrc.json b/.eslintrc.json index ab3da20..daa32b2 100644 --- a/.eslintrc.json +++ b/.eslintrc.json @@ -13,6 +13,7 @@ "rules": { "prettier/prettier": "error", "prefer-const": "off", - "camelcase": "off" + "camelcase": "off", + "no-underscore-dangle": "off" } }