From d8bd747331f194ce49387af64a470e856b8be064 Mon Sep 17 00:00:00 2001 From: sasanquaneuf Date: Thu, 9 Jan 2020 22:07:52 +0900 Subject: [PATCH] ignore no-tabs --- .eslintrc.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.eslintrc.js b/.eslintrc.js index 271e8db..86cd04a 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -16,7 +16,8 @@ module.exports = { rules: { // 'prettier/prettier': 'error', 'indent': ['error', 'tab'], - 'semi': ['error', 'always'] + 'semi': ['error', 'always'], + 'no-tabs': 'off' } }