Replaced clang format with prettuier (sadly)

This commit is contained in:
2023-12-28 16:47:52 +01:00
parent ca5bbd0b81
commit 117140fe9d
99 changed files with 13519 additions and 12011 deletions

17
.prettierrc.js Normal file
View File

@@ -0,0 +1,17 @@
/** @type { import('prettier').Config } */
const config = {
printWidth: 80,
tabWidth: 4,
useTabs: false,
semi: false,
singleQuote: false,
quoteProps: "as-needed",
trailingComma: "all",
bracketSpacing: true,
arrowParens: "avoid",
parser: "typescript",
endOfLine: "crlf"
}
module.exports = config