-
-
Notifications
You must be signed in to change notification settings - Fork 10
Enable biome linting strict #274
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
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| @@ -0,0 +1,35 @@ | ||||||||||||||||||
| { | ||||||||||||||||||
| "$schema": "https://biomejs.dev/schemas/2.3.8/schema.json", | ||||||||||||||||||
| "vcs": { | ||||||||||||||||||
| "enabled": true, | ||||||||||||||||||
| "clientKind": "git", | ||||||||||||||||||
| "useIgnoreFile": true | ||||||||||||||||||
| }, | ||||||||||||||||||
| "files": { | ||||||||||||||||||
| "ignoreUnknown": false, | ||||||||||||||||||
| "includes": ["**"] | ||||||||||||||||||
| }, | ||||||||||||||||||
| "formatter": { | ||||||||||||||||||
| "enabled": true, | ||||||||||||||||||
| "indentStyle": "space", | ||||||||||||||||||
| "indentWidth": 2, | ||||||||||||||||||
| "lineWidth": 100 | ||||||||||||||||||
| }, | ||||||||||||||||||
| "assist": { "actions": { "source": { "organizeImports": "on" } } }, | ||||||||||||||||||
| "linter": { | ||||||||||||||||||
| "enabled": true, | ||||||||||||||||||
| "rules": { | ||||||||||||||||||
| "recommended": true, | ||||||||||||||||||
| "correctness": { | ||||||||||||||||||
| "noUnusedVariables": "error" | ||||||||||||||||||
| } | ||||||||||||||||||
|
Comment on lines
+22
to
+25
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The PR title mentions enabling 'strict' linting, but the configuration only uses the This would enable all strict rules and keep your override for unused variables. If you only intended to enable the recommended rules, consider updating the PR title to avoid confusion.
Suggested change
|
||||||||||||||||||
| } | ||||||||||||||||||
| }, | ||||||||||||||||||
| "javascript": { | ||||||||||||||||||
| "formatter": { | ||||||||||||||||||
| "quoteStyle": "double", | ||||||||||||||||||
| "semicolons": "always", | ||||||||||||||||||
| "trailingCommas": "es5" | ||||||||||||||||||
| } | ||||||||||||||||||
| } | ||||||||||||||||||
| } | ||||||||||||||||||
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
While
vcs.useIgnoreFileis helpful, specifyingincludesmore explicitly is a best practice. Using"**"can be slow as it traverses all directories, which might include build artifacts or other files that are not in.gitignorebut are not meant to be linted. Scoping it down to your source files will improve performance and prevent unintended linting.