mirror of
https://github.com/C4illin/ConvertX.git
synced 2025-10-22 20:42:21 +00:00
13 lines
184 B
JavaScript
13 lines
184 B
JavaScript
/**
|
|
* @type {import('prettier').Config}
|
|
*/
|
|
const config = {
|
|
arrowParens: "always",
|
|
printWidth: 100,
|
|
singleQuote: false,
|
|
semi: true,
|
|
tabWidth: 2,
|
|
};
|
|
|
|
export default config;
|