13 lines
174 B
JavaScript
Raw Normal View History

2023-12-10 21:07:47 +03:00
module.exports = {
plugins: ['prettier'],
rules: {
'prettier/prettier': [
'error',
{
singleQuote: true,
semi: false,
},
]
}
}