-
-
Notifications
You must be signed in to change notification settings - Fork 60
Replace eslint with biome #439
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: master
Are you sure you want to change the base?
Changes from all commits
452cda7
0851237
440e58e
f4e9079
6ce5940
a4caaa7
45e385a
d46d36d
6d1367a
73fd0f9
ef7b61f
b54396b
2c34fcc
46d5ee6
47e3f2d
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
This file was deleted.
This file was deleted.
| Original file line number | Diff line number | Diff line change | ||||||
|---|---|---|---|---|---|---|---|---|
| @@ -0,0 +1,59 @@ | ||||||||
| { | ||||||||
| "$schema": "https://biomejs.dev/schemas/2.5.0/schema.json", | ||||||||
| "vcs": { | ||||||||
| "enabled": true, | ||||||||
| "clientKind": "git", | ||||||||
| "useIgnoreFile": true | ||||||||
| }, | ||||||||
| "files": { | ||||||||
| "ignoreUnknown": true, | ||||||||
| "includes": ["index.js", "lib/**/*.js", "test/**/*.js"] | ||||||||
| }, | ||||||||
| "formatter": { | ||||||||
| "enabled": true, | ||||||||
| "indentStyle": "tab" | ||||||||
|
Comment on lines
+13
to
+14
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. Tiny config nit: the top-level formatter sets
Suggested change
|
||||||||
| }, | ||||||||
| "linter": { | ||||||||
| "enabled": true, | ||||||||
| "rules": { | ||||||||
| "preset": "recommended", | ||||||||
| "suspicious": { | ||||||||
| "noRedundantUseStrict": "off", | ||||||||
| "noPrototypeBuiltins": "off", | ||||||||
| "useIsArray": "off", | ||||||||
| "noGlobalAssign": "off" | ||||||||
| }, | ||||||||
| "complexity": { | ||||||||
| "useArrowFunction": "off", | ||||||||
| "useDateNow": "off", | ||||||||
| "useOptionalChain": "off", | ||||||||
| "useLiteralKeys": "off", | ||||||||
| "noUselessThisAlias": "off" | ||||||||
| }, | ||||||||
| "correctness": { | ||||||||
| "noUnusedFunctionParameters": "off", | ||||||||
| "noUnusedVariables": "off" | ||||||||
| }, | ||||||||
| "style": { | ||||||||
| "useNodejsImportProtocol": "off", | ||||||||
| "useTemplate": "off" | ||||||||
| } | ||||||||
| } | ||||||||
|
jankapunkt marked this conversation as resolved.
|
||||||||
| }, | ||||||||
| "javascript": { | ||||||||
| "formatter": { | ||||||||
| "quoteStyle": "single", | ||||||||
| "indentStyle": "space", | ||||||||
| "trailingCommas": "all", | ||||||||
| "lineWidth": 120 | ||||||||
| } | ||||||||
| }, | ||||||||
| "assist": { | ||||||||
| "enabled": true, | ||||||||
| "actions": { | ||||||||
| "source": { | ||||||||
| "organizeImports": "on" | ||||||||
| } | ||||||||
| } | ||||||||
| } | ||||||||
| } | ||||||||
Uh oh!
There was an error while loading. Please reload this page.