-
Notifications
You must be signed in to change notification settings - Fork 77
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ci: allow lint-staged to find typescript parser config file (#7297)
**Related Issue:** N/A ## Summary `lint-staged` correctly fails now when there are eslint errors in `packages/calcite-components`.
- Loading branch information
Showing
3 changed files
with
55 additions
and
66 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
{ | ||
"*.{json,html,yml}": ["prettier --write"], | ||
"*.scss": ["stylelint --fix", "prettier --write"], | ||
"packages/**/*.{ts,tsx}": ["eslint --ext .ts,.tsx --fix", "prettier --write"], | ||
"*.md": ["markdownlint --fix --disable MD024 MD013 MD041 MD033", "prettier --write"] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters