Skip to content
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

feat: fresh start in rust 🦀 #42

Merged
merged 16 commits into from
Sep 14, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 0 additions & 5 deletions .commitlintrc.json

This file was deleted.

21 changes: 7 additions & 14 deletions .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -5,23 +5,16 @@ charset = utf-8
end_of_line = lf
insert_final_newline = true
trim_trailing_whitespace = true

[*.{js,ts,mjs}]
indent_size = 4
indent_style = tab
block_comment_start = /*
block_comment = *
block_comment_end = */
indent_stype = tab

[*.{yml,yaml}]
indent_size = 2
[*.json]
indent_style = space
indent_size = 2

[*.{md,rmd,mkd,mkdn,mdwn,mdown,markdown,litcoffee}]
tab_width = 4
[*.{diff,md}]
trim_trailing_whitespace = false

[*.{ps1}]
max_line_length = 115
indent_size = 4
indent_style = space
[*.{yml,yaml}]
indent_style = space
indent_size = 2
28 changes: 0 additions & 28 deletions .env.example

This file was deleted.

2 changes: 1 addition & 1 deletion .github/CODE_OF_CONDUCT.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,4 +28,4 @@ Follow any additional community guidelines or policies specified by the Izumo pr

## Enforcement

Failure to comply with this code of conduct may result in corrective actions, including but not limited to warnings, temporary or permanent bans from the community, and removal of contributions. The Izumo project maintainers reserve the right to enforce this code of conduct and make decisions regarding community membership and participation.
Failure to comply with this code of conduct may result in corrective actions, including but not limited to warnings, temporary or permanent bans from the community, and removal of contributions. The Izumo project maintainers reserve the right to enforce this code of conduct and make decisions regarding community membership and participation.
99 changes: 99 additions & 0 deletions .github/labels.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,99 @@
# Categories for Issues
- name: "🐛 bug"
color: "d73a4a"
description: "Something isn't working as expected"

- name: "✨ enhancement"
color: "a2eeef"
description: "New feature or request"

- name: "📡 api"
color: "1d76db"
description: "API-related issue or improvement"

- name: "⚡ performance"
color: "e4e669"
description: "Improvement related to performance"

- name: "📚 documentation"
color: "0075ca"
description: "Improvements or additions to documentation"

# Categories for Priority Levels
- name: "🚨 priority: high"
color: "ff0000"
description: "High priority issue"

- name: "⚠️ priority: medium"
color: "ffa500"
description: "Medium priority issue"

- name: "🟢 priority: low"
color: "00ff00"
description: "Low priority issue"

# Categories for Stages
- name: "📝 stage: planning"
color: "cfd3d7"
description: "In planning stage"

- name: "🛠️ stage: development"
color: "b60205"
description: "In development stage"

- name: "🧐 stage: review"
color: "fbca04"
description: "In review stage"

- name: "✅ stage: completed"
color: "0e8a16"
description: "Completed work"

# Categories for Status
- name: "⛔ status: blocked"
color: "f9d0c4"
description: "Issue is currently blocked"

- name: "🚧 status: in progress"
color: "c2e0c6"
description: "Work is currently being done"

- name: "⏸️ status: on hold"
color: "e99695"
description: "Issue is on hold"

- name: "🔍 status: ready for review"
color: "d4c5f9"
description: "Ready to be reviewed by maintainers"

# Categories for Types of Work
- name: "🆕 type: feature"
color: "0052cc"
description: "New feature"

- name: "🐞 type: bug"
color: "d73a4a"
description: "Bug fix"

- name: "🔨 type: refactor"
color: "fbca04"
description: "Refactoring code"

- name: "🧪 type: test"
color: "ffbfae"
description: "Adding or improving tests"

- name: "❓ type: question"
color: "d876e3"
description: "A question or clarification"

# Miscellaneous
- name: "🙏 help wanted"
color: "008672"
description: "Community help wanted"

- name: "🌱 good first issue"
color: "7057ff"
description: "Good for newcomers"

- name: ""
22 changes: 0 additions & 22 deletions .github/problemMatchers/eslint.json

This file was deleted.

17 changes: 0 additions & 17 deletions .github/problemMatchers/tsc.json

This file was deleted.

25 changes: 23 additions & 2 deletions .github/renovate.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,25 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": ["github>sapphiredev/.github:sapphire-renovate"]
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:best-practices",
":pinAllExceptPeerDependencies",
":maintainLockFilesWeekly",
":prConcurrentLimitNone",
":prHourlyLimitNone",
":semanticCommitsDisabled",
":automergeLinters",
":automergeTesters",
"customManagers:dockerfileVersions",
"customManagers:githubActionsVersions",
"github>Turbo87/renovate-config//rust/updateToolchain"
],
"packageRules": [
{
"matchDepNames": [
"/^diesel$/",
"/^diesel_/"
],
"groupName": "diesel packages"
}
]
}
50 changes: 0 additions & 50 deletions .github/workflows/ci.yml

This file was deleted.

92 changes: 0 additions & 92 deletions .github/workflows/codeql.yml

This file was deleted.

Loading