-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #11 from ize-302/develop
chore: biome init ♻️
- Loading branch information
Showing
7 changed files
with
218 additions
and
179 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
{ | ||
"$schema": "https://biomejs.dev/schemas/1.9.0/schema.json", | ||
"vcs": { | ||
"enabled": false, | ||
"clientKind": "git", | ||
"useIgnoreFile": false | ||
}, | ||
"files": { | ||
"ignoreUnknown": false, | ||
"ignore": [] | ||
}, | ||
"formatter": { | ||
"enabled": true, | ||
"indentStyle": "tab", | ||
"indentWidth": 2 | ||
}, | ||
"organizeImports": { | ||
"enabled": true | ||
}, | ||
"linter": { | ||
"enabled": true, | ||
"rules": { | ||
"recommended": true | ||
} | ||
}, | ||
"json": { | ||
"formatter": { | ||
"trailingCommas": "none" | ||
} | ||
}, | ||
"javascript": { | ||
"formatter": { | ||
"quoteStyle": "double" | ||
} | ||
} | ||
} |
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 |
---|---|---|
@@ -1,57 +1,57 @@ | ||
[ | ||
{ | ||
"name": "feat", | ||
"emoji": "✨", | ||
"description": "A new feature" | ||
}, | ||
{ | ||
"name": "fix", | ||
"emoji": "🐛", | ||
"description": "A bug Fix" | ||
}, | ||
{ | ||
"name": "docs", | ||
"emoji": "📚", | ||
"description": "Documentation only changes" | ||
}, | ||
{ | ||
"name": "style", | ||
"emoji": "💄", | ||
"description": "Changes that do not affect the meaning of the code (white-space, formatting, missing semi-colons, etc)" | ||
}, | ||
{ | ||
"name": "refactor", | ||
"emoji": "📦", | ||
"description": "A code change that neither fixes a bug nor adds a feature" | ||
}, | ||
{ | ||
"name": "perf", | ||
"emoji": "🚀", | ||
"description": "A code change that improves performance" | ||
}, | ||
{ | ||
"name": "test", | ||
"emoji": "🚨", | ||
"description": "Adding missing tests or correcting existing tests" | ||
}, | ||
{ | ||
"name": "ci", | ||
"emoji": "⚙️", | ||
"description": "Changes to our CI configuration files and scripts (example scopes: Travis, Circle, BrowserStack, SauceLabs)" | ||
}, | ||
{ | ||
"name": "build", | ||
"emoji": "🛠", | ||
"description": "Changes that affect the build system or external dependencies (example scopes: gulp, broccoli, npm)" | ||
}, | ||
{ | ||
"name": "chore", | ||
"emoji": "♻️", | ||
"description": "Other changes that don't modify src or test files" | ||
}, | ||
{ | ||
"name": "revert", | ||
"emoji": "🗑", | ||
"description": "Reverts a previous commit" | ||
} | ||
{ | ||
"name": "feat", | ||
"emoji": "✨", | ||
"description": "A new feature" | ||
}, | ||
{ | ||
"name": "fix", | ||
"emoji": "🐛", | ||
"description": "A bug Fix" | ||
}, | ||
{ | ||
"name": "docs", | ||
"emoji": "📚", | ||
"description": "Documentation only changes" | ||
}, | ||
{ | ||
"name": "style", | ||
"emoji": "💄", | ||
"description": "Changes that do not affect the meaning of the code (white-space, formatting, missing semi-colons, etc)" | ||
}, | ||
{ | ||
"name": "refactor", | ||
"emoji": "📦", | ||
"description": "A code change that neither fixes a bug nor adds a feature" | ||
}, | ||
{ | ||
"name": "perf", | ||
"emoji": "🚀", | ||
"description": "A code change that improves performance" | ||
}, | ||
{ | ||
"name": "test", | ||
"emoji": "🚨", | ||
"description": "Adding missing tests or correcting existing tests" | ||
}, | ||
{ | ||
"name": "ci", | ||
"emoji": "⚙️", | ||
"description": "Changes to our CI configuration files and scripts (example scopes: Travis, Circle, BrowserStack, SauceLabs)" | ||
}, | ||
{ | ||
"name": "build", | ||
"emoji": "🛠", | ||
"description": "Changes that affect the build system or external dependencies (example scopes: gulp, broccoli, npm)" | ||
}, | ||
{ | ||
"name": "chore", | ||
"emoji": "♻️", | ||
"description": "Other changes that don't modify src or test files" | ||
}, | ||
{ | ||
"name": "revert", | ||
"emoji": "🗑", | ||
"description": "Reverts a previous commit" | ||
} | ||
] |
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 |
---|---|---|
@@ -1,8 +1,8 @@ | ||
const FLAGS = Object.freeze({ | ||
COMMIT: 'commit', | ||
HELP: 'help', | ||
UPDATE: 'update', | ||
VERSION: 'version', | ||
}) | ||
COMMIT: "commit", | ||
HELP: "help", | ||
UPDATE: "update", | ||
VERSION: "version", | ||
}); | ||
|
||
export default FLAGS | ||
export default FLAGS; |
Oops, something went wrong.