mirror of
https://github.com/JezzWTF/vibepod.git
synced 2026-06-01 15:22:14 +00:00
d60c5ae498
- Add .prettierrc (double quotes, 2-space, trailing comma es5, LF, 100 cols) - Add .prettierignore (excludes node_modules, .next, server/, lock files) - Add .editorconfig (LF + per-language indent rules for all editors) - Expand .gitattributes to cover all text file types with eol=lf - Add prettier@^3.5.3 devDep at workspace root with format/format:check scripts - Add format/format:check scripts to web/package.json
38 lines
511 B
INI
38 lines
511 B
INI
root = true
|
|
|
|
[*]
|
|
end_of_line = lf
|
|
charset = utf-8
|
|
trim_trailing_whitespace = true
|
|
insert_final_newline = true
|
|
|
|
[*.{ts,tsx,js,jsx,mjs,cjs,mts,cts}]
|
|
indent_style = space
|
|
indent_size = 2
|
|
|
|
[*.{json,jsonc}]
|
|
indent_style = space
|
|
indent_size = 2
|
|
|
|
[*.{css,html}]
|
|
indent_style = space
|
|
indent_size = 2
|
|
|
|
[*.{yaml,yml}]
|
|
indent_style = space
|
|
indent_size = 2
|
|
|
|
[*.py]
|
|
indent_style = space
|
|
indent_size = 4
|
|
|
|
[*.{toml}]
|
|
indent_style = space
|
|
indent_size = 4
|
|
|
|
[*.md]
|
|
trim_trailing_whitespace = false
|
|
|
|
[Makefile]
|
|
indent_style = tab
|