diff options
author | dan <dan.abramov@gmail.com> | 2023-09-07 02:06:07 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-09-07 02:06:07 +0100 |
commit | 138e6d9b9769e33cfe75f9c8dd697d65e7037fb2 (patch) | |
tree | 71998d7cd077ac485f930b2ea5bce955f56c4ac1 /package.json | |
parent | 82a17db59411c38abdc24af2790e0d5529bcae28 (diff) | |
download | voidsky-138e6d9b9769e33cfe75f9c8dd697d65e7037fb2.tar.zst |
Fix lint-staged not allowing edits to Markdown files (#1402)
* Remove unnecessary overrides config * Only lint-staged code files
Diffstat (limited to 'package.json')
-rw-r--r-- | package.json | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/package.json b/package.json index e4ae80270..59b9ba95c 100644 --- a/package.json +++ b/package.json @@ -252,6 +252,6 @@ ] }, "lint-staged": { - "*": "yarn eslint --ext .js,.jsx,.ts,.tsx --fix" + "*{.js,.jsx,.ts,.tsx}": "yarn eslint --fix" } } |