style(biome): using biome for format, lint, check

This commit is contained in:
2025-11-08 12:58:40 +02:00
parent 075a388ccb
commit fdd1cbbfd5
152 changed files with 3737 additions and 3989 deletions
+21 -21
View File
@@ -1,23 +1,23 @@
module.exports = {
extends: ["@commitlint/config-conventional"],
rules: {
"type-enum": [
2,
"always",
[
"feat", // New feature
"fix", // Bug fix
"docs", // Documentation only changes
"style", // Changes that do not affect the meaning of the code (white-space, formatting, etc)
"refactor", // Code changes that neither fixes a bug nor adds a feature
"perf", // Performance improvements
"test", // Adding missing tests or correcting existing tests
"build", // Changes that affect the build system or external dependencies
"ci", // Changes to CI configuration files and scripts
"chore", // Other changes that don't modify src or test files
"revert", // Reverts a previous commit
],
],
"subject-case": [2, "never", ["sentence-case", "start-case", "pascal-case", "upper-case"]],
},
extends: ["@commitlint/config-conventional"],
rules: {
"subject-case": [2, "never", ["sentence-case", "start-case", "pascal-case", "upper-case"]],
"type-enum": [
2,
"always",
[
"feat", // New feature
"fix", // Bug fix
"docs", // Documentation only changes
"style", // Changes that do not affect the meaning of the code (white-space, formatting, etc)
"refactor", // Code changes that neither fixes a bug nor adds a feature
"perf", // Performance improvements
"test", // Adding missing tests or correcting existing tests
"build", // Changes that affect the build system or external dependencies
"ci", // Changes to CI configuration files and scripts
"chore", // Other changes that don't modify src or test files
"revert", // Reverts a previous commit
],
],
},
};