mirror of
https://github.com/callumalpass/tasknotes.git
synced 2026-07-22 12:50:26 +00:00
- 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.
13 lines
No EOL
245 B
Text
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"
|
|
} |