blob: 11530bede59cef7eb22dc3912c596014f68ff467 [file] [log] [blame] [raw]
module.exports = {
trailingComma: 'all',
printWidth: 120,
singleQuote: true,
arrowParens: 'avoid',
tabWidth: 4,
bracketSpacing: false,
overrides: [
{
files: '*.{yml,json}',
options: {
tabWidth: 2,
},
},
],
};