-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update arguments-builder.config.ts Update rspack.dev.config.js Update boxjs.settings.json Update database.mjs Update deploy.yml Update build.yml Update dev.yml
- Loading branch information
1 parent
f871c21
commit e5b5fb0
Showing
10 changed files
with
644 additions
and
573 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,72 @@ | ||
{ | ||
"$schema": "https://biomejs.dev/schemas/1.9.4/schema.json", | ||
"files": { | ||
"ignore": [ | ||
"**/*.bundle.js" | ||
], | ||
"ignoreUnknown": false | ||
}, | ||
"formatter": { | ||
"enabled": true, | ||
"indentStyle": "tab", | ||
"indentWidth": 2, | ||
"lineEnding": "lf", | ||
"lineWidth": 240 | ||
}, | ||
"javascript": { | ||
"formatter": { | ||
"arrowParentheses": "asNeeded", | ||
"bracketSameLine": true, | ||
"quoteStyle": "double" | ||
} | ||
}, | ||
"json": { | ||
"parser": { | ||
"allowComments": true, | ||
"allowTrailingCommas": true | ||
} | ||
}, | ||
"linter": { | ||
"enabled": true, | ||
"rules": { | ||
"complexity": { | ||
"noForEach": "off", | ||
"noStaticOnlyClass": "off", | ||
"noUselessSwitchCase": "off", | ||
"useArrowFunction": "info", | ||
"useFlatMap": "off", | ||
"useLiteralKeys": "info" | ||
}, | ||
"correctness": { | ||
"noInnerDeclarations": "info", | ||
"noSelfAssign": "off", | ||
"noSwitchDeclarations": "info" | ||
}, | ||
"recommended": true, | ||
"style": { | ||
"noNegationElse": "off", | ||
"noParameterAssign": "off", | ||
"noUselessElse": "off", | ||
"noVar": "info", | ||
"useDefaultParameterLast": "info", | ||
"useForOf": "error", | ||
"useNodejsImportProtocol": "error", | ||
"useNumberNamespace": "error", | ||
"useSingleVarDeclarator": "off" | ||
}, | ||
"suspicious": { | ||
"noAssignInExpressions": "info", | ||
"noFallthroughSwitchClause": "info", | ||
"useDefaultSwitchClauseLast": "off" | ||
} | ||
} | ||
}, | ||
"organizeImports": { | ||
"enabled": true | ||
}, | ||
"vcs": { | ||
"clientKind": "git", | ||
"enabled": true, | ||
"useIgnoreFile": true | ||
} | ||
} |
Oops, something went wrong.