Skip to content

Commit

Permalink
Update .eslintrc to change order of rules and ensure comma-dangle rul…
Browse files Browse the repository at this point in the history
…e is off
  • Loading branch information
anna-mat authored Oct 30, 2024
1 parent 5df1703 commit 7d26bf4
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions .eslintrc
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,13 @@
"extends":
[
"nodebb",
"prettier"
"prettier",
"eslint-config-prettier"
],
"rules": {
"no-bitwise": "off",
"comma-dangle": "off",
"no-unused-vars": "off",
"no-useless-concat": "off"
"no-bitwise": "off",
"no-unused-vars": "off",
"no-useless-concat": "off"
}
}

0 comments on commit 7d26bf4

Please sign in to comment.