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