Files
gh-vanman2024-cli-builder-p…/skills/oclif-patterns/templates/.eslintrc.json
2025-11-30 09:04:14 +08:00

19 lines
496 B
JSON

{
"extends": [
"oclif",
"oclif-typescript"
],
"rules": {
"object-curly-spacing": ["error", "always"],
"unicorn/no-abusive-eslint-disable": "off",
"unicorn/prefer-module": "off",
"unicorn/prefer-top-level-await": "off",
"valid-jsdoc": "off",
"no-console": "warn",
"no-warning-comments": "warn",
"@typescript-eslint/explicit-module-boundary-types": "off",
"@typescript-eslint/no-explicit-any": "warn",
"perfectionist/sort-objects": "off"
}
}