aoc-automation
Version:
Advent of Code tool to automate the repetitive parts of AoC.
18 lines (17 loc) • 357 B
JavaScript
const prettierJSON = ({ semicolons }) => {
return {
arrowParens: "always",
bracketSpacing: true,
printWidth: 80,
proseWrap: "preserve",
semi: semicolons,
singleQuote: false,
tabWidth: 2,
useTabs: false,
trailingComma: "all"
};
};
var prettierJSON_default = prettierJSON;
export {
prettierJSON_default as default
};