From a4bff71dbe0815581889a83c04fbe2f4500e70db Mon Sep 17 00:00:00 2001 From: Sam Schloegel Date: Mon, 3 Jan 2022 00:28:11 -0500 Subject: [PATCH] Adjust to better match existing conventions --- .eslintrc.js | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.eslintrc.js b/.eslintrc.js index 320619a..dd68d84 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -9,5 +9,11 @@ module.exports = { parserOptions: { ecmaVersion: 13, }, - rules: {}, + rules: { + 'import/no-extraneous-dependencies': 0, + 'no-unused-vars': ['error', { args: 'none' }], + 'no-console': 'off', + 'no-alert': 'off', + 'no-plusplus': 'off', + }, };