Merge pull request #2832 from gradido/prettier-refine-config

refactor(backend): prettier refine config
This commit is contained in:
Ulf Gebhardt 2023-04-21 10:06:37 +02:00 committed by GitHub
commit a4351ba881
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,9 +1,14 @@
module.exports = {
semi: false,
printWidth: 100,
singleQuote: true,
trailingComma: "all",
tabWidth: 2,
useTabs: false,
semi: false,
singleQuote: true,
quoteProps: "as-needed",
jsxSingleQuote: true,
trailingComma: "all",
bracketSpacing: true,
bracketSameLine: false,
arrowParens: "always",
endOfLine: "auto",
};