Move prettier and babel to separate files

This commit is contained in:
Marc Rousavy
2023-09-01 19:39:14 +02:00
parent 0ee9cb3352
commit 033ddb8cff
3 changed files with 13 additions and 15 deletions

10
package/.prettierrc.js Normal file
View File

@@ -0,0 +1,10 @@
module.exports = {
"bracketSpacing": true,
"bracketSameLine": true,
"singleQuote": true,
"trailingComma": "all",
"semi": true,
"tabWidth": 2,
"useTabs": false,
"printWidth": 140
}