13 lines
232 B
JavaScript
13 lines
232 B
JavaScript
|
|
/** @type {import("prettier").Config} */
|
||
|
|
module.exports = {
|
||
|
|
semi: true,
|
||
|
|
singleQuote: true,
|
||
|
|
trailingComma: 'all',
|
||
|
|
printWidth: 100,
|
||
|
|
tabWidth: 4,
|
||
|
|
useTabs: true,
|
||
|
|
bracketSpacing: true,
|
||
|
|
arrowParens: 'always',
|
||
|
|
endOfLine: 'lf',
|
||
|
|
};
|