Skip to content

Instantly share code, notes, and snippets.

View WarningImHack3r's full-sized avatar
🐙
Tech octopus

Antoine Lethimonnier WarningImHack3r

🐙
Tech octopus
View GitHub Profile
@fubits1
fubits1 / .oxlintrc.json
Created March 10, 2026 12:11
Oxlint + Svelte via Eslint (as of 2026-03)
{
"$schema": "./node_modules/oxlint/configuration_schema.json",
"plugins": ["typescript", "unicorn"],
"categories": {
"correctness": "error"
},
"ignorePatterns": ["**/*.svelte", "**/*.svelte.ts", "**/*.svelte.js"],
"rules": {
"no-case-declarations": "error",
"no-empty": "error",
  • Disable git hooks
git config core.hooksPath no-hooks
  • Re-enable git hooks
git config --unset core.hooksPath