mirror of
https://github.com/samiyev/puaros.git
synced 2025-12-27 23:06:54 +05:00
Add EditorConfig for consistent editor settings, Prettier for formatting (4-space indentation), ESLint with TypeScript rules, and linting documentation
16 lines
324 B
Plaintext
16 lines
324 B
Plaintext
{
|
|
"printWidth": 100,
|
|
"tabWidth": 4,
|
|
"useTabs": false,
|
|
"semi": true,
|
|
"singleQuote": true,
|
|
"quoteProps": "as-needed",
|
|
"jsxSingleQuote": false,
|
|
"trailingComma": "all",
|
|
"bracketSpacing": true,
|
|
"bracketSameLine": false,
|
|
"arrowParens": "always",
|
|
"endOfLine": "lf",
|
|
"embeddedLanguageFormatting": "auto"
|
|
}
|