2019-08-06 16:16:51 +00:00
|
|
|
module.exports = {
|
2023-06-19 13:39:12 +00:00
|
|
|
arrowParens: 'always',
|
|
|
|
printWidth: 120,
|
|
|
|
semi: true,
|
|
|
|
singleQuote: true,
|
|
|
|
tabWidth: 2,
|
|
|
|
trailingComma: 'all',
|
|
|
|
useTabs: false,
|
2024-07-22 01:39:50 +00:00
|
|
|
|
|
|
|
// JSON sorting
|
|
|
|
jsonSortOrder: '{ "/.*/": "caseInsensitiveLexical" } ',
|
|
|
|
plugins: ['prettier-plugin-sort-json'],
|
2022-09-05 07:58:35 +00:00
|
|
|
};
|