mirror of
https://github.com/samiyev/puaros.git
synced 2025-12-27 23:06:54 +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,
|
"printWidth": 100,
|
||||||
"tabWidth": 4,
|
"tabWidth": 4,
|
||||||
"useTabs": false,
|
"useTabs": false,
|
||||||
"semi": true,
|
"semi": false,
|
||||||
"singleQuote": true,
|
"singleQuote": false,
|
||||||
"quoteProps": "as-needed",
|
"quoteProps": "as-needed",
|
||||||
"jsxSingleQuote": false,
|
"jsxSingleQuote": false,
|
||||||
"trailingComma": "all",
|
"trailingComma": "all",
|
||||||
|
|||||||
@@ -96,8 +96,8 @@ export default tseslint.config(
|
|||||||
// ========================================
|
// ========================================
|
||||||
indent: ['error', 4, { SwitchCase: 1 }],
|
indent: ['error', 4, { SwitchCase: 1 }],
|
||||||
'@typescript-eslint/indent': 'off', // Let Prettier handle this
|
'@typescript-eslint/indent': 'off', // Let Prettier handle this
|
||||||
quotes: ['error', 'single', { avoidEscape: true }],
|
quotes: ['error', 'double', { avoidEscape: true }],
|
||||||
semi: ['error', 'always'],
|
semi: ['error', 'never'],
|
||||||
|
|
||||||
// ========================================
|
// ========================================
|
||||||
// Prettier Integration
|
// Prettier Integration
|
||||||
|
|||||||
Reference in New Issue
Block a user