grid-apps-cmms/conf/prettier.config.js

19 lines
347 B
JavaScript
Raw Normal View History

2025-05-31 20:03:56 -06:00
/**
* @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,
2025-05-31 20:03:56 -06:00
bracketSameLine: true,
arrowParens: "always",
endOfLine: "lf"
2025-05-31 20:03:56 -06:00
}
module.exports = config