From a0ea7a9298ac53ccc4ffd5f45f7eadf61ecfc60e Mon Sep 17 00:00:00 2001 From: Lucif3r-in Date: Mon, 19 Jun 2023 18:16:12 +0530 Subject: [PATCH] fix: remove cspell --- .lintstagedrc.json | 5 +---- package.json | 3 ++- 2 files changed, 3 insertions(+), 5 deletions(-) diff --git a/.lintstagedrc.json b/.lintstagedrc.json index 20d7f87d..ee63a031 100644 --- a/.lintstagedrc.json +++ b/.lintstagedrc.json @@ -1,8 +1,5 @@ { "*.{js,jsx,mjs}": ["eslint --fix"], "*.css": ["stylelint --allow-empty-input --fix"], - "*": [ - "prettier --ignore-unknown --write", - "cspell --no-must-find-files --no-progress" - ] + "*": ["prettier --ignore-unknown --write"] } diff --git a/package.json b/package.json index ee9d811e..a9b13bc6 100644 --- a/package.json +++ b/package.json @@ -22,7 +22,8 @@ "lint:fix": "npm run lint:eslint-fix && npm run lint:style-fix", "lint:eslint-fix": "eslint --fix --cache --report-unused-disable-directives \"**/*.{js,jsx,ts,tsx}\"", "lint:style-fix": "stylelint --fix \"**/*.css\"", - "lint:style": "stylelint \"**/*.css\"" + "lint:style": "stylelint \"**/*.css\"", + "lint-staged": "lint-staged" }, "engines": { "node": ">=16.14.0",