@bracketed/prettier-configuration
Version:
Preset prettier configuration for Bracketed Softworks projects and community users' projects.
34 lines (32 loc) • 942 B
text/typescript
/**
* Preset configuration for Bracketed Softworks projects and other community projects, free for public and community use, or any use really.
* @example Implementing the config into your prettier workflow.
* ```json
* // package.json
* ...
* "prettier": "@bracketed/prettier-configuration"
* ```
*/
declare const _default: {
arrowParens: "always";
bracketSpacing: true;
endOfLine: "crlf";
htmlWhitespaceSensitivity: "css";
insertPragma: false;
singleAttributePerLine: true;
bracketSameLine: true;
jsxBracketSameLine: true;
jsxSingleQuote: true;
printWidth: number;
proseWrap: "always";
quoteProps: "as-needed";
requirePragma: false;
semi: true;
singleQuote: true;
tabWidth: number;
trailingComma: "es5";
useTabs: true;
embeddedLanguageFormatting: "auto";
vueIndentScriptAndStyle: true;
};
export { _default as default };