@gravity-ui/prettier-config
Version:
Gravity UI Prettier config, following our styleguide
22 lines (21 loc) • 458 B
JavaScript
module.exports = {
bracketSpacing: false,
tabWidth: 4,
printWidth: 100,
singleQuote: true,
trailingComma: 'all',
overrides: [
{
files: ['*.js', '*.jsx', '*.ts', '*.tsx'],
options: {
parser: 'typescript',
},
},
{
files: ['*.md', '*.json', '*.yaml', '*.yml'],
options: {
tabWidth: 2,
},
},
],
};