linstrom/frontend-src/.prettierrc.js

13 lines
149 B
JavaScript
Raw Normal View History

2024-08-22 17:57:53 +00:00
'use strict';
module.exports = {
overrides: [
{
files: '*.{js,ts}',
options: {
singleQuote: true,
},
},
],
};