Minor update prettierrc override

This commit is contained in:
Victor Hagelbäck 2021-01-25 08:05:14 +01:00
parent 3adadd3f7c
commit 35cbf9a12a

View file

@ -4,13 +4,13 @@ module.exports = {
semi: true,
singleQuote: true,
tabWidth: 2,
trailingComma: 'none',
trailingComma: 'all',
overrides: [
{
files: '*.js, *.jsx',
files: ['*.js'],
options: {
trailingComma: 'all' // or es5
}
}
]
trailingComma: 'all',
},
},
],
};