Skip to content

Commit

Permalink
refactor: root glob * matches all
Browse files Browse the repository at this point in the history
  • Loading branch information
devjiwonchoi committed May 16, 2024
1 parent 8d29c8c commit f461b91
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions lint-staged.config.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
module.exports = {
'**/*.{js,jsx,mjs,ts,tsx,mts}': [
'*.{js,jsx,mjs,ts,tsx,mts}': [
'prettier --write',
'eslint --no-ignore --max-warnings=0 --fix',
],
'**/*.{json,md,mdx,css,html,yml,yaml,scss}': ['prettier --write'],
'**/*.rs': ['cargo fmt'],
'*.{json,md,mdx,css,html,yml,yaml,scss}': ['prettier --write'],
'*.rs': ['cargo fmt'],
}

0 comments on commit f461b91

Please sign in to comment.