Upgraded package.json to version 1.1.0 and added several development dependencies. Introduced a logger for better tracking of operations. Additionally, improved type definitions across the project and integrated enhanced ESLint configurations.
38 lines
747 B
Plaintext
38 lines
747 B
Plaintext
{
|
|
"semi": true,
|
|
"singleQuote": true,
|
|
"trailingComma": "es5",
|
|
"tabWidth": 2,
|
|
"printWidth": 100,
|
|
"bracketSpacing": true,
|
|
"arrowParens": "avoid",
|
|
"endOfLine": "lf",
|
|
"jsxSingleQuote": false,
|
|
"quoteProps": "as-needed",
|
|
"bracketSameLine": false,
|
|
"proseWrap": "preserve",
|
|
"htmlWhitespaceSensitivity": "css",
|
|
"embeddedLanguageFormatting": "auto",
|
|
"singleAttributePerLine": false,
|
|
"overrides": [
|
|
{
|
|
"files": "*.{ts,tsx}",
|
|
"options": {
|
|
"parser": "typescript"
|
|
}
|
|
},
|
|
{
|
|
"files": "*.md",
|
|
"options": {
|
|
"proseWrap": "always",
|
|
"printWidth": 80
|
|
}
|
|
},
|
|
{
|
|
"files": ["*.yml", "*.yaml"],
|
|
"options": {
|
|
"singleQuote": false
|
|
}
|
|
}
|
|
]
|
|
} |