patrick-mades-dev-tools
Version:
A collection of development tools and utilities Made by Patrick Made for Patrick Made (but feel free to use it for your own projects)
19 lines (18 loc) • 430 B
JavaScript
;
/**
* Prettier Configuration
* Default configuration for Prettier
*/
Object.defineProperty(exports, "__esModule", { value: true });
const prettierConfig = {
semi: true,
singleQuote: true,
jsxBracketSameLine: true,
tabWidth: 2,
trailingComma: 'es5',
printWidth: 100,
bracketSpacing: true,
arrowParens: 'avoid',
singleAttributePerLine: true,
};
exports.default = prettierConfig;