Files
ConvertX/prettier.config.js
T

13 lines
184 B
JavaScript
Raw Normal View History

2024-05-19 00:07:56 +02:00
/**
* @type {import('prettier').Config}
2024-05-19 00:07:56 +02:00
*/
const config = {
arrowParens: "always",
2025-06-03 19:19:28 +02:00
printWidth: 100,
2024-05-19 00:07:56 +02:00
singleQuote: false,
semi: true,
tabWidth: 2,
};
2024-05-26 12:44:28 +02:00
export default config;