mirror of
https://github.com/HangarMC/Hangar.git
synced 2024-11-21 01:21:54 +08:00
12 lines
187 B
JavaScript
12 lines
187 B
JavaScript
/**
|
|
* @type {import("prettier").Options}
|
|
*/
|
|
module.exports = {
|
|
tabWidth: 2,
|
|
semi: true,
|
|
singleQuote: false,
|
|
printWidth: 160,
|
|
arrowParens: "always",
|
|
trailingComma: "es5",
|
|
};
|