Skip to content

Commit

Permalink
🖌️ Code stylization
Browse files Browse the repository at this point in the history
⏱️ Change `Object.values()`` to `typeof` for better performance (Fixes #18)
🆙 Dependency updates
  • Loading branch information
karelkryda committed May 11, 2022
1 parent 85897f9 commit 02c69f7
Show file tree
Hide file tree
Showing 16 changed files with 351 additions and 306 deletions.
19 changes: 18 additions & 1 deletion .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,13 +21,30 @@
"rules": {
"no-console": "off",
"linebreak-style": "off",
"camelcase": [
"warn",
{
"properties": "never",
"ignoreImports": true
}
],
"no-unused-vars": [
"warn",
{
"args": "none"
}
],
"quotes": [
"error",
"double",
{
"allowTemplateLiterals": true
}
],
"object-curly-spacing": [
"error",
"always"
],
"keyword-spacing": [
"error",
{
Expand All @@ -38,4 +55,4 @@
"error"
]
}
}
}
Loading

0 comments on commit 02c69f7

Please sign in to comment.