9ff4c0dbd5
* Setup project-wide prettier * Remove old workspace file * Remove old debugging directives * New top-level .prettierignore * Updated Prettier config settings * Contrubuting guide: Fix for some bad code blocks * Added more ignores * Improved the format script command * printWidth set to 100 * Formatted entire repo (pnpm run format)
12 lines
209 B
JavaScript
12 lines
209 B
JavaScript
module.exports = {
|
|
semi: true,
|
|
singleQuote: false,
|
|
jsxSingleQuote: false,
|
|
trailingComma: "es5",
|
|
bracketSpacing: true,
|
|
bracketSameLine: false,
|
|
printWidth: 100,
|
|
tabWidth: 2,
|
|
useTabs: false,
|
|
};
|