fix space indentation

This commit is contained in:
Arif Hasanic
2025-07-25 11:27:09 +02:00
parent b2e9c1f056
commit 53da0f740c
21 changed files with 452 additions and 441 deletions

View File

@@ -6,21 +6,21 @@ import tseslint from "typescript-eslint";
import { globalIgnores } from "eslint/config";
export default tseslint.config([
globalIgnores(["dist"]),
{
files: ["**/*.{ts,tsx}"],
extends: [
"airbnb",
"plugin:prettier/recommended",
js.configs.recommended,
tseslint.configs.recommended,
reactHooks.configs["recommended-latest"],
reactRefresh.configs.vite,
"prettier",
],
languageOptions: {
ecmaVersion: 2020,
globals: globals.browser,
},
},
globalIgnores(["dist"]),
{
files: ["**/*.{ts,tsx}"],
extends: [
"airbnb",
"plugin:prettier/recommended",
js.configs.recommended,
tseslint.configs.recommended,
reactHooks.configs["recommended-latest"],
reactRefresh.configs.vite,
"prettier",
],
languageOptions: {
ecmaVersion: 2020,
globals: globals.browser,
},
},
]);