From cb0bfdf58018031c794697d02639ffa585f00d1c Mon Sep 17 00:00:00 2001 From: Alex Holachek Date: Thu, 11 Jun 2020 11:50:44 -0400 Subject: [PATCH] edit eslintrc --- .eslintrc.js | 25 +++++++++++++------------ 1 file changed, 13 insertions(+), 12 deletions(-) diff --git a/.eslintrc.js b/.eslintrc.js index f4632438..e07610d4 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -3,12 +3,12 @@ module.exports = { plugins: ['@typescript-eslint'], extends: [ 'plugin:@typescript-eslint/recommended', - 'plugin:react/recommended' + 'plugin:react/recommended', ], settings: { react: { - version: 'detect' - } + version: 'detect', + }, }, rules: { indent: 'off', @@ -16,13 +16,14 @@ module.exports = { '@typescript-eslint/camelcase': 'off', '@typescript-eslint/no-use-before-define': 'off', '@typescript-eslint/explicit-function-return-type': 'off', - '@typescript-eslint/member-delimiter-style': 0, - '@typescript-eslint/no-non-null-assertion': 0, - '@typescript-eslint/no-explicit-any': 0, - '@typescript-eslint/explicit-member-accessibility': 0, - '@typescript-eslint/no-object-literal-type-assertion': 0, - '@typescript-eslint/array-type': 0, - '@typescript-eslint/explicit-member-accessibility': 0, - '@typescript-eslint/no-parameter-properties': 0 - } + '@typescript-eslint/member-delimiter-style': 'off', + '@typescript-eslint/no-non-null-assertion': 'off', + '@typescript-eslint/no-explicit-any': 'off', + '@typescript-eslint/explicit-member-accessibility': 'off', + '@typescript-eslint/no-object-literal-type-assertion': 'off', + '@typescript-eslint/array-type': 'off', + '@typescript-eslint/explicit-member-accessibility': 'off', + '@typescript-eslint/no-parameter-properties': 'off', + '@typescript-eslint/ban-ts-ignore': 'off', + }, }