Skip to content

Commit

Permalink
Update ESLint configuration
Browse files Browse the repository at this point in the history
Added "multiline-ternary" rule to the ESLint configuration file and set it to "off". This change aims to improve the readability of the code by allowing multiline ternary operators without triggering a lint warning.

Signed-off-by: Jordan Dialpuri <[email protected]>
  • Loading branch information
Dialpuri committed Jan 18, 2024
1 parent c18745b commit 44ebdee
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion webapp/.eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@
}
],
"@typescript-eslint/triple-slash-reference": "off",
"@typescript-eslint/no-misused-promises": "warn"
"@typescript-eslint/no-misused-promises": "warn",
"multiline-ternary": "off"
}
}

0 comments on commit 44ebdee

Please sign in to comment.