mirror of
https://github.com/samiyev/puaros.git
synced 2025-12-27 15:00:41 +05:00
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:
@@ -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",
|
||||
|
||||
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user