Skip to content

Commit

Permalink
No exceptions for comma operator during linting
Browse files Browse the repository at this point in the history
  • Loading branch information
frostburn committed Feb 27, 2024
1 parent 8f8fcfe commit cc8e8f0
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
"no-constant-condition": 0,
"@typescript-eslint/no-explicit-any": 0,
"@typescript-eslint/ban-ts-comment": 0,
"node/no-unpublished-import": ["error", {"allowModules": ["vitest"]}]
"node/no-unpublished-import": ["error", {"allowModules": ["vitest"]}],
"no-restricted-syntax": ["error", "SequenceExpression"]
}
}

0 comments on commit cc8e8f0

Please sign in to comment.