From 2c8cf1c51ceb60070ae135f67e2e9caf761b9660 Mon Sep 17 00:00:00 2001 From: zeppi Date: Fri, 22 Oct 2021 10:57:59 -0400 Subject: [PATCH] fix lint --- .lintstagedrc.json | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/.lintstagedrc.json b/.lintstagedrc.json index ae253a628..9e865956b 100644 --- a/.lintstagedrc.json +++ b/.lintstagedrc.json @@ -1,9 +1,7 @@ { "linters": { "ui/**/*.{js,jsx,scss,json}": ["prettier --write", "git add"], - "web/**/*.{js,jsx,scss,json}": ["prettier --write", "git add"], - "ui/**/*.{js,jsx}": ["eslint", "flow focus-check --color always", "git add"], - "web/**/*.{js,jsx}": ["eslint", "git add"] + "ui/**/*.{js,jsx}": ["eslint", "flow focus-check --color always", "git add"] }, - "ignore": ["node_modules", "web/dist/**/*", "dist/**/*", "package-lock.json"] + "ignore": ["node_modules", "dist/**/*", "package-lock.json"] }