mocksaml/.prettierrc.js

19 lines
331 B
JavaScript
Raw Permalink Normal View History

2022-02-22 05:36:06 +00:00
module.exports = {
bracketSpacing: true,
bracketSameLine: true,
singleQuote: true,
jsxSingleQuote: true,
2024-02-04 15:38:33 +00:00
trailingComma: 'es5',
2022-02-22 05:36:06 +00:00
semi: true,
printWidth: 110,
2024-02-04 15:38:33 +00:00
arrowParens: 'always',
overrides: [
{
files: ['tsconfig.json', 'jsconfig.json'],
options: {
parser: 'jsonc',
},
},
],
2022-02-22 05:36:06 +00:00
};