Skip to content

Instantly share code, notes, and snippets.

@milksense
Last active October 29, 2025 15:40
Show Gist options
  • Select an option

  • Save milksense/2a0c1efda9ab0cf83bf4fe658878a67f to your computer and use it in GitHub Desktop.

Select an option

Save milksense/2a0c1efda9ab0cf83bf4fe658878a67f to your computer and use it in GitHub Desktop.

Revisions

  1. milksense revised this gist Oct 29, 2025. 2 changed files with 5 additions and 2 deletions.
    2 changes: 1 addition & 1 deletion biome.json [backend]
    Original file line number Diff line number Diff line change
    @@ -1,5 +1,5 @@
    {
    "$schema": "https://biomejs.dev/schemas/2.3.1/schema.json",
    "$schema": "https://biomejs.dev/schemas/2.3.2/schema.json",
    "vcs": {
    "enabled": false,
    "clientKind": "git",
    5 changes: 4 additions & 1 deletion biome.json [frontend]
    Original file line number Diff line number Diff line change
    @@ -1,5 +1,5 @@
    {
    "$schema": "https://biomejs.dev/schemas/2.3.1/schema.json",
    "$schema": "https://biomejs.dev/schemas/2.3.2/schema.json",
    "vcs": {
    "enabled": false,
    "clientKind": "git",
    @@ -35,6 +35,9 @@
    }
    },
    "css": {
    "parser": {
    "tailwindDirectives": true
    },
    "formatter": {
    "quoteStyle": "double"
    }
  2. milksense revised this gist Oct 27, 2025. 2 changed files with 2 additions and 2 deletions.
    2 changes: 1 addition & 1 deletion biome.json [backend]
    Original file line number Diff line number Diff line change
    @@ -1,5 +1,5 @@
    {
    "$schema": "https://biomejs.dev/schemas/2.3.0/schema.json",
    "$schema": "https://biomejs.dev/schemas/2.3.1/schema.json",
    "vcs": {
    "enabled": false,
    "clientKind": "git",
    2 changes: 1 addition & 1 deletion biome.json [frontend]
    Original file line number Diff line number Diff line change
    @@ -1,5 +1,5 @@
    {
    "$schema": "https://biomejs.dev/schemas/2.3.0/schema.json",
    "$schema": "https://biomejs.dev/schemas/2.3.1/schema.json",
    "vcs": {
    "enabled": false,
    "clientKind": "git",
  3. milksense revised this gist Oct 27, 2025. 1 changed file with 1 addition and 1 deletion.
    2 changes: 1 addition & 1 deletion biome.json [frontend]
    Original file line number Diff line number Diff line change
    @@ -1,5 +1,5 @@
    {
    "$schema": "https://biomejs.dev/schemas/2.2.6/schema.json",
    "$schema": "https://biomejs.dev/schemas/2.3.0/schema.json",
    "vcs": {
    "enabled": false,
    "clientKind": "git",
  4. milksense revised this gist Oct 27, 2025. 1 changed file with 1 addition and 1 deletion.
    2 changes: 1 addition & 1 deletion biome.json [backend]
    Original file line number Diff line number Diff line change
    @@ -1,5 +1,5 @@
    {
    "$schema": "https://biomejs.dev/schemas/2.2.6/schema.json",
    "$schema": "https://biomejs.dev/schemas/2.3.0/schema.json",
    "vcs": {
    "enabled": false,
    "clientKind": "git",
  5. milksense revised this gist Oct 24, 2025. 2 changed files with 68 additions and 0 deletions.
    File renamed without changes.
    68 changes: 68 additions & 0 deletions biome.json [frontend]
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,68 @@
    {
    "$schema": "https://biomejs.dev/schemas/2.2.6/schema.json",
    "vcs": {
    "enabled": false,
    "clientKind": "git",
    "useIgnoreFile": false
    },
    "files": {
    "ignoreUnknown": true
    },
    "formatter": {
    "enabled": true,
    "indentStyle": "space",
    "indentWidth": 2,
    "attributePosition": "multiline"
    },
    "linter": {
    "enabled": true,
    "rules": {
    "recommended": true,
    "complexity": {
    "noBannedTypes": "off"
    },
    "suspicious": {
    "noShadowRestrictedNames": "off",
    "noExplicitAny": "off"
    }
    }
    },
    "javascript": {
    "formatter": {
    "quoteStyle": "double",
    "semicolons": "asNeeded",
    "arrowParentheses": "asNeeded"
    }
    },
    "css": {
    "formatter": {
    "quoteStyle": "double"
    }
    },
    "assist": {
    "enabled": true,
    "actions": {
    "source": {
    "organizeImports": {
    "level": "on",
    "options": {
    "groups": [
    [
    ":NODE:",
    "react"
    ],
    ":BLANK_LINE:",
    "@/components/**",
    ":BLANK_LINE:",
    "@/lib/**",
    ":BLANK_LINE:",
    ":PATH:",
    "lucide-react",
    ":BLANK_LINE:"
    ]
    }
    }
    }
    }
    }
    }
  6. milksense revised this gist Oct 24, 2025. 1 changed file with 6 additions and 1 deletion.
    7 changes: 6 additions & 1 deletion biome.json
    Original file line number Diff line number Diff line change
    @@ -6,7 +6,7 @@
    "useIgnoreFile": false
    },
    "files": {
    "ignoreUnknown": false
    "ignoreUnknown": true
    },
    "formatter": {
    "enabled": true,
    @@ -34,6 +34,11 @@
    "arrowParentheses": "asNeeded"
    }
    },
    "css": {
    "formatter": {
    "quoteStyle": "double"
    }
    },
    "assist": {
    "enabled": true,
    "actions": {
  7. milksense revised this gist Oct 24, 2025. 1 changed file with 18 additions and 2 deletions.
    20 changes: 18 additions & 2 deletions biome.json
    Original file line number Diff line number Diff line change
    @@ -1,5 +1,5 @@
    {
    "$schema": "https://biomejs.dev/schemas/2.2.5/schema.json",
    "$schema": "https://biomejs.dev/schemas/2.2.6/schema.json",
    "vcs": {
    "enabled": false,
    "clientKind": "git",
    @@ -38,7 +38,23 @@
    "enabled": true,
    "actions": {
    "source": {
    "organizeImports": "off"
    "organizeImports": {
    "level": "on",
    "options": {
    "groups": [
    [
    ":NODE:",
    ":PACKAGE:",
    "!@utils/**",
    "!@models/**"
    ],
    ":BLANK_LINE:",
    "@models/**",
    "@utils/**",
    ":PATH:"
    ]
    }
    }
    }
    }
    }
  8. milksense revised this gist Oct 22, 2025. 1 changed file with 43 additions and 37 deletions.
    80 changes: 43 additions & 37 deletions biome.json
    Original file line number Diff line number Diff line change
    @@ -1,39 +1,45 @@
    {
    "$schema": "https://biomejs.dev/schemas/2.2.5/schema.json",
    "vcs": {
    "enabled": false,
    "clientKind": "git",
    "useIgnoreFile": false
    },
    "files": {
    "ignoreUnknown": false
    },
    "formatter": {
    "enabled": true,
    "indentStyle": "space",
    "indentWidth": 2,
    "attributePosition": "multiline"
    },
    "linter": {
    "enabled": true,
    "rules": {
    "recommended": true,
    "security": "error"
    }
    },
    "javascript": {
    "formatter": {
    "quoteStyle": "double",
    "semicolons": "asNeeded",
    "arrowParentheses": "asNeeded"
    }
    },
    "assist": {
    "enabled": true,
    "actions": {
    "source": {
    "organizeImports": "off"
    }
    }
    }
    "$schema": "https://biomejs.dev/schemas/2.2.5/schema.json",
    "vcs": {
    "enabled": false,
    "clientKind": "git",
    "useIgnoreFile": false
    },
    "files": {
    "ignoreUnknown": false
    },
    "formatter": {
    "enabled": true,
    "indentStyle": "space",
    "indentWidth": 2,
    "attributePosition": "multiline"
    },
    "linter": {
    "enabled": true,
    "rules": {
    "recommended": true,
    "complexity": {
    "noBannedTypes": "off"
    },
    "suspicious": {
    "noShadowRestrictedNames": "off",
    "noExplicitAny": "off"
    }
    }
    },
    "javascript": {
    "formatter": {
    "quoteStyle": "double",
    "semicolons": "asNeeded",
    "arrowParentheses": "asNeeded"
    }
    },
    "assist": {
    "enabled": true,
    "actions": {
    "source": {
    "organizeImports": "off"
    }
    }
    }
    }
  9. milksense created this gist Oct 13, 2025.
    39 changes: 39 additions & 0 deletions biome.json
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,39 @@
    {
    "$schema": "https://biomejs.dev/schemas/2.2.5/schema.json",
    "vcs": {
    "enabled": false,
    "clientKind": "git",
    "useIgnoreFile": false
    },
    "files": {
    "ignoreUnknown": false
    },
    "formatter": {
    "enabled": true,
    "indentStyle": "space",
    "indentWidth": 2,
    "attributePosition": "multiline"
    },
    "linter": {
    "enabled": true,
    "rules": {
    "recommended": true,
    "security": "error"
    }
    },
    "javascript": {
    "formatter": {
    "quoteStyle": "double",
    "semicolons": "asNeeded",
    "arrowParentheses": "asNeeded"
    }
    },
    "assist": {
    "enabled": true,
    "actions": {
    "source": {
    "organizeImports": "off"
    }
    }
    }
    }