Skip to content

Commit

Permalink
chore: add eslint rules to correctly work with prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
DudaGod committed May 10, 2020
1 parent 274504c commit b2b9c7b
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,9 @@ module.exports = {
},
],
"@typescript-eslint/no-parameter-properties": "off",
"no-prototype-builtins": "off"
"no-prototype-builtins": "off",
"object-curly-spacing": ["error", "always"],
quotes: ["error", "double", {avoidEscape: true}],
"comma-dangle": ["error", "always-multiline"],
}
};

0 comments on commit b2b9c7b

Please sign in to comment.