Skip to content

Commit

Permalink
comma-dangle fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Haehnchen committed Nov 26, 2022
1 parent 869bb29 commit 0935920
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion .eslintrc
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
"object-shorthand": "off",
"class-methods-use-this": "off",
"no-continue": "off",
"no-await-in-loop": "warn"
"no-await-in-loop": "warn",
"comma-dangle": ["error", "never"]
}
}
3 changes: 2 additions & 1 deletion .prettierrc
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
{
"singleQuote": true,
"printWidth": 120,
"endOfLine": "lf"
"endOfLine": "lf",
"trailingComma": "none"
}

0 comments on commit 0935920

Please sign in to comment.