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"] }