refactor: ♻️ omit more in cspell config (#957)

This commit is contained in:
Adrian Pilarczyk 2023-09-04 11:21:28 +02:00 committed by GitHub
parent 1e3c08c029
commit ceddcf96eb
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 12 additions and 2 deletions

View file

@ -57,5 +57,15 @@
"hookform", "hookform",
"urql" "urql"
], ],
"ignorePaths": ["node_modules", "package.json", "pnpm-lock.yaml", ".gitignore"] "ignorePaths": [
"node_modules",
"package.json",
"pnpm-lock.yaml",
".gitignore",
"apps/products-feed/src/modules/category-mapping/google-product-categories.ts",
"**/*.test.ts",
"**/*.spec.ts",
"**/graphql.ts",
"**/CHANGELOG.md"
]
} }

View file

@ -35,7 +35,7 @@
"lint-staged": { "lint-staged": {
"*.{js,ts,tsx}": "eslint --cache --fix", "*.{js,ts,tsx}": "eslint --cache --fix",
"*.{ts,tsx,md}": "prettier --write", "*.{ts,tsx,md}": "prettier --write",
"*.{ts,tsx,md,js,jsx}": "cspell" "*.{ts,tsx,md,js,jsx}": "cspell --no-must-find-files"
}, },
"packageManager": "pnpm@8.2.0", "packageManager": "pnpm@8.2.0",
"private": true, "private": true,