add prettier and eslint

This commit is contained in:
Johannes Loher 2020-12-23 17:26:53 +01:00
parent 4f6a9b7e73
commit 618146226b
5 changed files with 1161 additions and 8 deletions

8
.prettierrc.js Normal file
View file

@ -0,0 +1,8 @@
module.exports = {
semi: true,
trailingComma: "all",
singleQuote: false,
printWidth: 120,
tabWidth: 4,
editorconfig: true
};