callumalpass_tasknotes/.prettierrc
callumalpass 632c5486ff feat: configure Prettier formatter and improve linting setup
- Add Prettier with tab-based configuration matching existing EditorConfig
- Install eslint-config-prettier and eslint-plugin-prettier for integration
- Add format and format:check scripts for code formatting
- Update ESLint configuration to integrate with Prettier

This reapplies the Prettier configuration from PR #747 which was previously
reverted, now rebased onto the current main branch with dependency features.
2025-09-28 12:28:12 +10:00

13 lines
No EOL
245 B
Text

{
"useTabs": true,
"tabWidth": 4,
"semi": true,
"singleQuote": false,
"quoteProps": "as-needed",
"trailingComma": "es5",
"bracketSpacing": true,
"bracketSameLine": false,
"arrowParens": "always",
"printWidth": 100,
"endOfLine": "lf"
}