.oxlintrc.json 471 B

12345678910111213141516171819202122232425
  1. {
  2. "$schema": "./node_modules/oxlint/configuration_schema.json",
  3. "extends": ["config:recommended"],
  4. "plugins": ["import", "typescript", "unicorn"],
  5. "rules": {
  6. "no-console": "off",
  7. "no-unused-vars": "off"
  8. },
  9. "env": {
  10. "es6": true
  11. },
  12. "globals": {
  13. "foo": "readonly"
  14. },
  15. "settings": {},
  16. "overrides": [
  17. {
  18. "files": ["*.test.ts", "*.spec.ts"],
  19. "rules": {
  20. "@typescript-eslint/no-explicit-any": "off"
  21. }
  22. }
  23. ]
  24. }