* Initialize project with essential configuration files including ** .gitignore ** .npmrc ** .nvmrc ** .prettierrc ** bunfig.toml ** eslint.config.ts ** package.json ** README.md ** tsconfig.json
13 lines
242 B
Plaintext
13 lines
242 B
Plaintext
{
|
|
"arrowParens": "avoid",
|
|
"bracketSameLine": true,
|
|
"bracketSpacing": false,
|
|
"printWidth": 180,
|
|
"semi": true,
|
|
"singleAttributePerLine": false,
|
|
"singleQuote": true,
|
|
"tabWidth": 2,
|
|
"trailingComma": "none",
|
|
"useTabs": false
|
|
}
|