19 lines
No EOL
347 B
JavaScript
19 lines
No EOL
347 B
JavaScript
|
|
/**
|
|
* @see https://prettier.io/docs/configuration
|
|
* @type {import("prettier").Config}
|
|
*/
|
|
const config = {
|
|
trailingComma: "es5",
|
|
useTabs: false,
|
|
bracketSpacing: true,
|
|
objectWrap: "preserve",
|
|
tabWidth: 2,
|
|
semi: true,
|
|
singleQuote: false,
|
|
bracketSameLine: true,
|
|
arrowParens: "always",
|
|
endOfLine: "lf"
|
|
}
|
|
|
|
module.exports = config |