UNPKG

@mheob/prettier-config

Version:
29 lines (28 loc) 602 B
const options = { arrowParens: 'avoid', endOfLine: 'lf', printWidth: 100, proseWrap: 'always', semi: true, singleQuote: true, trailingComma: 'all', useTabs: true, overrides: [ { files: '**/*.{yaml,yml}', options: { printWidth: 130, singleQuote: false, useTabs: false, }, }, { files: '**/*.md', options: { parser: 'markdown', printWidth: 130, }, }, ], }; export default options;