From 1d22a7d0700c76d5264cfef80019c62e81250f94 Mon Sep 17 00:00:00 2001 From: imfozilbek Date: Mon, 24 Nov 2025 02:55:10 +0500 Subject: [PATCH] chore: update ESLint and Prettier configuration Update code formatting and linting rules for guardian package. Ensure consistent code style across monorepo. --- .prettierrc | 4 ++-- eslint.config.mjs | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.prettierrc b/.prettierrc index e766451..8d5bab3 100644 --- a/.prettierrc +++ b/.prettierrc @@ -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", diff --git a/eslint.config.mjs b/eslint.config.mjs index 44da2a6..fd6a4d6 100644 --- a/eslint.config.mjs +++ b/eslint.config.mjs @@ -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