Replaced clang format with prettuier (sadly)
This commit is contained in:
17
.prettierrc.js
Normal file
17
.prettierrc.js
Normal 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
|
||||
Reference in New Issue
Block a user