@mskcc/prettier-config
Version:
Prettier config for MSKCC projects
47 lines (45 loc) • 964 B
JavaScript
'use strict';
module.exports = {
printWidth: 80,
semi: true,
singleQuote: true,
tabWidth: 2,
trailingComma: 'es5',
overrides: [
{
files: ['*.html'],
options: {
bracketSameLine: true,
singleQuote: false,
printWidth: 120,
tabWidth: 4,
},
},
{
files: ['*.scss'],
options: {
tabWidth: 4,
},
},
{
files: ['*.vue', '*.Vue'],
options: {
tabWidth: 4,
},
},
{
files: ['*.js', '*.jsx'],
options: {
tabWidth: 4,
jsxSingleQuote: true,
},
},
{
files: ['*.ts', '*.tsx'],
options: {
tabWidth: 4,
jsxSingleQuote: true,
},
},
],
};