17 lines
341 B
JavaScript
17 lines
341 B
JavaScript
/** @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
|