Skip to content

Commit

Permalink
fix: remove stale option
Browse files Browse the repository at this point in the history
  • Loading branch information
gajus committed Dec 18, 2024
1 parent 450056f commit e6542ea
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 1 deletion.
8 changes: 8 additions & 0 deletions cspell.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
ignoreRegExpList:
- /.*[0-9].*/
language: en
version: '0.2'
words:
- gajus
- kuizinas
- gitdown
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,7 @@
"build": "rm -fr ./dist && tsc --project ./tsconfig.build.json",
"generate": "gitdown ./.README/README.md --output-file ./README.md && tsx ./src/bin/addAssertions",
"lint": "eslint .",
"prepare": "husky install",
"test": "mocha --require tsx './tests/rules/*'"
},
"version": "0.0.0-development"
Expand Down
2 changes: 1 addition & 1 deletion src/rules/sortReactDependencies.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ const messages = {

export default createRule<Options, keyof typeof messages>({
create: (context, [options]) => {
const { caseSensitive = true, order = 'asc' } = options;
const { order = 'asc' } = options;

return {
CallExpression(node) {
Expand Down

0 comments on commit e6542ea

Please sign in to comment.