Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feature(eslint): enable linting with type information #1098

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

BarryThePenguin
Copy link
Contributor

Updates the @hono/eslint-config to include typescript-eslint presets for linting with type information

Copy link

changeset-bot bot commented Apr 2, 2025

🦋 Changeset detected

Latest commit: eb62c87

The changes in this PR will be included in the next version bump.

This PR includes changesets to release 1 package
Name Type
@hono/eslint-config Major

Not sure what this means? Click here to learn what changesets are.

Click here if you're a maintainer who wants to add another changeset to this PR

@codecov-commenter
Copy link

codecov-commenter commented Apr 2, 2025

Codecov Report

All modified and coverable lines are covered by tests ✅

Project coverage is 79.50%. Comparing base (e8512f0) to head (eb62c87).

Additional details and impacted files
@@           Coverage Diff           @@
##             main    #1098   +/-   ##
=======================================
  Coverage   79.50%   79.50%           
=======================================
  Files          77       77           
  Lines        2279     2279           
  Branches      577      577           
=======================================
  Hits         1812     1812           
  Misses        391      391           
  Partials       76       76           
Flag Coverage Δ
ajv-validator 0.74% <ø> (ø)
arktype-validator 0.57% <ø> (ø)
auth-js 2.98% <ø> (ø)
casbin 1.44% <ø> (ø)
class-validator 0.83% <ø> (ø)
clerk-auth 0.92% <ø> (ø)
cloudflare-access 2.72% <ø> (ø)
conform-validator 1.09% <ø> (ø)
effect-validator 0.39% <ø> (ø)
esbuild-transpiler 0.96% <ø> (ø)
event-emitter 2.50% <ø> (ø)
firebase-auth 2.45% <ø> (ø)
graphql-server 4.12% <ø> (ø)
hello 0.17% <ø> (ø)
medley-router 0.43% <ø> (ø)
node-ws 2.36% <ø> (ø)
oauth-providers 26.28% <ø> (ø)
oidc-auth 9.96% <ø> (ø)
otel 0.87% <ø> (ø)
prometheus 1.57% <ø> (ø)
react-renderer 1.36% <ø> (ø)
sentry 0.74% <ø> (ø)
standard-validator 1.40% <ø> (ø)
swagger-editor 0.61% <ø> (ø)
swagger-ui 1.66% <ø> (ø)
trpc-server 0.52% <ø> (ø)
tsyringe 0.26% <ø> (ø)
typebox-validator 1.36% <ø> (ø)
valibot-validator 0.48% <ø> (ø)
zod-openapi 5.17% <ø> (ø)
zod-validator 0.57% <ø> (ø)

Flags with carried forward coverage won't be shown. Click here to find out more.

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.

🚀 New features to boost your workflow:
  • ❄️ Test Analytics: Detect flaky tests, report on failures, and find test suite problems.
  • 📦 JS Bundle Analysis: Save yourself from yourself by tracking and limiting bundle sizes in JS merges.

Comment on lines +7 to +12
languageOptions: {
parserOptions: {
projectService: true,
tsconfigRootDir: import.meta.dirname,
},
},
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This tells the typescript-eslint parser where to find the root tsconfig.json, and to use project references

Comment on lines +14 to +17
linterOptions: {
reportUnusedDisableDirectives: 'error',
reportUnusedInlineConfigs: 'error',
},
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Additional linter options

reportUnusedDisableDirectives defaults to 'warn' and reportUnusedInlineConfigs defaults to 'off'

Comment on lines +19 to +61
rules: {
'@typescript-eslint/array-type': 'off',
'@typescript-eslint/await-thenable': 'off',
'@typescript-eslint/consistent-indexed-object-style': 'off',
'@typescript-eslint/consistent-type-definitions': 'off',
'@typescript-eslint/dot-notation': 'off',
'@typescript-eslint/no-base-to-string': 'off',
'@typescript-eslint/no-confusing-void-expression': 'off',
'@typescript-eslint/no-deprecated': 'off',
'@typescript-eslint/no-duplicate-type-constituents': 'off',
'@typescript-eslint/no-dynamic-delete': 'off',
'@typescript-eslint/no-floating-promises': 'off',
'@typescript-eslint/no-invalid-void-type': 'off',
'@typescript-eslint/no-misused-promises': 'off',
'@typescript-eslint/no-non-null-assertion': 'off',
'@typescript-eslint/no-redundant-type-constituents': 'off',
'@typescript-eslint/no-unnecessary-boolean-literal-compare': 'off',
'@typescript-eslint/no-unnecessary-condition': 'off',
'@typescript-eslint/no-unnecessary-template-expression': 'off',
'@typescript-eslint/no-unnecessary-type-arguments': 'off',
'@typescript-eslint/no-unnecessary-type-assertion': 'off',
'@typescript-eslint/no-unnecessary-type-parameters': 'off',
'@typescript-eslint/no-unsafe-argument': 'off',
'@typescript-eslint/no-unsafe-assignment': 'off',
'@typescript-eslint/no-unsafe-call': 'off',
'@typescript-eslint/no-unsafe-enum-comparison': 'off',
'@typescript-eslint/no-unsafe-member-access': 'off',
'@typescript-eslint/no-unsafe-return': 'off',
'@typescript-eslint/no-useless-constructor': 'off',
'@typescript-eslint/non-nullable-type-assertion-style': 'off',
'@typescript-eslint/only-throw-error': 'off',
'@typescript-eslint/prefer-function-type': 'off',
'@typescript-eslint/prefer-includes': 'off',
'@typescript-eslint/prefer-nullish-coalescing': 'off',
'@typescript-eslint/prefer-optional-chain': 'off',
'@typescript-eslint/prefer-regexp-exec': 'off',
'@typescript-eslint/prefer-return-this-type': 'off',
'@typescript-eslint/require-await': 'off',
'@typescript-eslint/restrict-plus-operands': 'off',
'@typescript-eslint/restrict-template-expressions': 'off',
'@typescript-eslint/unbound-method': 'off',
'@typescript-eslint/unified-signatures': 'off',
},
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I've initially disabled all the new rules to keep this PR small

I'd be happy to revisit each rule individually and decide if it's worth enabling or not. If a new rule is problematic, it can always be disabled in the shared eslint config

My personal preference is to have less configuration, and rely on tooling to make these decisions for me. But I understand that doesn't fit with how everyone works 😅

Comment on lines +10 to +11
...tseslint.configs.strictTypeChecked,
...tseslint.configs.stylisticTypeChecked,
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

There's a few shared configs to choose from.

Their suggestion is to enabling recommended-type-checked and stylistic-type-checked to start with. Then replacing recommended-type-checked with strict-type-checked if you're comfortable working with TypeScript.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Includes bun_test files in the project

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Includes project configuration files

@BarryThePenguin BarryThePenguin marked this pull request as ready for review April 2, 2025 11:25
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants