@gravity-ui/prettier-config
Version:
Gravity UI Prettier config, following our styleguide
25 lines (23 loc) • 523 B
JavaScript
/** @type {import('prettier').Config} */
const config = {
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,
},
},
],
};
module.exports = config;