generated from TBD54566975/tbd-project-template
-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Loading status checks…
chore(lint): add biomejs to vscode extension (#2475)
- v0.433.2
- v0.433.1
- v0.433.0
- v0.432.0
- v0.431.1
- v0.431.0
- v0.430.1
- v0.430.0
- v0.429.0
- v0.428.1
- v0.428.0
- v0.427.2
- v0.427.1
- v0.427.0
- v0.426.0
- v0.425.0
- v0.424.2
- v0.424.1
- v0.424.0
- v0.423.1
- v0.423.0
- v0.422.2
- v0.422.1
- v0.422.0
- v0.421.0
- v0.420.1
- v0.420.0
- v0.419.0
- v0.418.0
- v0.417.0
- v0.416.0
- v0.415.1
- v0.415.0
- v0.414.0
- v0.413.2
- v0.413.1
- v0.413.0
- v0.412.6
- v0.412.5
- v0.412.4
- v0.412.3
- v0.412.2
- v0.412.1
- v0.412.0
- v0.411.0
- v0.410.2
- v0.410.1
- v0.410.0
- v0.409.0
- v0.408.2
- v0.408.1
- v0.408.0
- v0.407.4
- v0.407.3
- v0.407.2
- v0.407.1
- v0.407.0
- v0.406.0
- v0.405.5
- v0.405.4
- v0.405.3
- v0.405.2
- v0.405.1
- v0.405.0
- v0.404.1
- v0.404.0
- v0.403.2
- v0.403.1
- v0.403.0
- v0.402.0
- v0.401.0
- v0.400.0
- v0.399.0
- v0.398.1
- v0.398.0
- v0.397.2
- v0.397.1
- v0.397.0
- v0.396.0
- v0.395.0
- v0.394.1
- v0.394.0
- v0.393.1
- v0.393.0
- v0.392.2
- v0.392.1
- v0.392.0
- v0.391.2
- v0.391.1
- v0.391.0
- v0.390.0
- v0.389.0
- v0.388.0
- v0.387.2
- v0.387.1
- v0.387.0
- v0.386.3
- v0.386.2
- v0.386.1
- v0.386.0
- v0.385.0
- v0.384.0
- v0.383.1
- v0.383.0
- v0.382.0
- v0.381.1
- v0.381.0
- v0.380.0
- v0.379.1
- v0.379.0
- v0.378.2
- v0.378.1
- v0.378.0
- v0.377.3
- v0.377.2
- v0.377.1
- v0.377.0
- v0.376.1
- v0.376.0
- v0.375.0
- v0.374.0
- v0.373.1
- v0.373.0
- v0.372.4
- v0.372.3
- v0.372.2
- v0.372.1
- v0.372.0
- v0.371.0
- v0.370.0
- v0.369.0
- v0.368.1
- v0.368.0
- v0.367.0
- v0.366.0
- v0.365.0
- v0.364.1
- v0.364.0
- v0.363.0
- v0.362.1
- v0.362.0
- v0.361.5
- v0.361.4
- v0.361.3
- v0.361.2
- v0.361.1
- v0.361.0
- v0.360.0
- v0.359.1
- v0.359.0
- v0.358.0
- v0.357.0
- v0.356.0
- v0.355.1
- v0.355.0
1 parent
02b5eeb
commit 549b493
Showing
9 changed files
with
271 additions
and
1,165 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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,45 @@ | ||
{ | ||
"$schema": "./node_modules/@biomejs/biome/configuration_schema.json", | ||
"organizeImports": { | ||
"enabled": true, | ||
"ignore": ["./node_modules", "./dist"] | ||
}, | ||
"linter": { | ||
"enabled": true, | ||
"rules": { | ||
"recommended": true, | ||
"a11y": { | ||
"useKeyWithClickEvents": "off" | ||
}, | ||
"correctness": { | ||
"useExhaustiveDependencies": "off" | ||
}, | ||
"suspicious": { | ||
"noArrayIndexKey": "off" | ||
} | ||
}, | ||
"include": ["src/**/*.ts"], | ||
"ignore": ["./node_modules", "./dist"] | ||
}, | ||
"formatter": { | ||
"indentStyle": "space", | ||
"indentWidth": 2, | ||
"lineWidth": 160, | ||
"include": ["src/**/*.ts"], | ||
"ignore": ["./node_modules", "./dist"] | ||
}, | ||
"javascript": { | ||
"formatter": { | ||
"semicolons": "asNeeded", | ||
"indentStyle": "space", | ||
"quoteStyle": "single", | ||
"jsxQuoteStyle": "single" | ||
} | ||
}, | ||
"json": { | ||
"formatter": { | ||
"indentStyle": "space", | ||
"indentWidth": 2 | ||
} | ||
} | ||
} |
Large diffs are not rendered by default.
Oops, something went wrong.
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