Skip to content

Commit

Permalink
allow +
Browse files Browse the repository at this point in the history
  • Loading branch information
gurgunday committed Oct 20, 2024
1 parent a5330af commit c32c983
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ export default [
"no-empty-static-block": "error",
"no-eval": "error",
"no-extend-native": "error",
"no-implicit-coercion": "error",
"no-implicit-coercion": "error", // +exp and `${exp} are allowed as they have different semantics than Number (for bigints) and String (for symbols)
"no-implied-eval": "error",
"no-iterator": "error",
"no-undef": ["error", { typeof: true }],
Expand All @@ -84,7 +84,6 @@ export default [
"FunctionDeclaration",
"VariableDeclaration[kind='var']",
"UnaryExpression[operator='void']",
"UnaryExpression[operator='+']",
"SequenceExpression",
"LabeledStatement",
],
Expand Down

0 comments on commit c32c983

Please sign in to comment.