15 lines
267 B
JavaScript
15 lines
267 B
JavaScript
/** @type {import('prettier').Config} */
|
|
const config = {
|
|
tabWidth: 2,
|
|
useTabs: false,
|
|
semi: true,
|
|
singleQuote: false,
|
|
trailingComma: "es5",
|
|
bracketSpacing: true,
|
|
arrowParens: "always",
|
|
proseWrap: "never",
|
|
printWidth: 80,
|
|
};
|
|
|
|
export default config;
|