linstrom/frontend-src/.prettierrc.js
2024-08-22 19:57:53 +02:00

12 lines
149 B
JavaScript

'use strict';
module.exports = {
overrides: [
{
files: '*.{js,ts}',
options: {
singleQuote: true,
},
},
],
};