chore: update ESLint and Prettier configuration

Update code formatting and linting rules for guardian package.
Ensure consistent code style across monorepo.
This commit is contained in:
imfozilbek
2025-11-24 02:55:10 +05:00
parent 959d84918f
commit 1d22a7d070
2 changed files with 4 additions and 4 deletions

View File

@@ -2,8 +2,8 @@
"printWidth": 100,
"tabWidth": 4,
"useTabs": false,
"semi": true,
"singleQuote": true,
"semi": false,
"singleQuote": false,
"quoteProps": "as-needed",
"jsxSingleQuote": false,
"trailingComma": "all",

View File

@@ -96,8 +96,8 @@ export default tseslint.config(
// ========================================
indent: ['error', 4, { SwitchCase: 1 }],
'@typescript-eslint/indent': 'off', // Let Prettier handle this
quotes: ['error', 'single', { avoidEscape: true }],
semi: ['error', 'always'],
quotes: ['error', 'double', { avoidEscape: true }],
semi: ['error', 'never'],
// ========================================
// Prettier Integration