Skip to content
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
6 changes: 0 additions & 6 deletions .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,6 @@ indent_size = 2
[*.{py,pyw}]
indent_size = 4

[*.{go,mod,sum}]
indent_style = tab

[Makefile]
indent_style = tab

[*.{md,markdown}]
trim_trailing_whitespace = false

Expand Down
15 changes: 13 additions & 2 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,19 @@ updates:
production:
dependency-type: "production"

- package-ecosystem: "npm"
directory: "/relay"
schedule:
interval: "weekly"
open-pull-requests-limit: 5
labels:
- "dependencies"
- "npm"
commit-message:
prefix: "deps"

- package-ecosystem: "pip"
directory: "/"
directory: "/backend"
schedule:
interval: "weekly"
open-pull-requests-limit: 10
Expand All @@ -39,7 +50,7 @@ updates:
prefix: "deps"

- package-ecosystem: "docker"
directory: "/"
directory: "/relay"
schedule:
interval: "weekly"
open-pull-requests-limit: 5
Expand Down
2 changes: 1 addition & 1 deletion README.zh-CN.md
Original file line number Diff line number Diff line change
Expand Up @@ -251,7 +251,7 @@ Issue 和 PR 请提在 GitHub。GitCode 镜像会同步推送,但不跑 CI。

## License

MIT,见 [LICENSE](LICENSE)。
CNCL,见 [LICENSE](LICENSE)。

---

Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.0.1
1.2.0
4 changes: 2 additions & 2 deletions backend/docs/openapi.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@
"email": "security@ms33834.dev"
},
"license": {
"name": "MIT",
"url": "https://opensource.org/license/mit"
"name": "CNCL-1.0",
"url": "https://github.com/MS33834/taskflow/blob/main/LICENSE"
},
"version": "0.1.0"
},
Expand Down
1 change: 1 addition & 0 deletions backend/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ build-backend = "setuptools.build_meta"
name = "taskflow-backend"
version = "0.1.0"
description = "TaskFlow backend service with plugin system"
license = { text = "CNCL-1.0" }
requires-python = ">=3.11"
dependencies = [
"fastapi>=0.109.1",
Expand Down
12 changes: 12 additions & 0 deletions docs/DEVELOPER_CHECKLIST.md
Original file line number Diff line number Diff line change
Expand Up @@ -77,3 +77,15 @@ Before merging:
- [ ] No deprecation warnings from dependencies
- [ ] No security scan warnings (CodeQL, gitleaks)
- [ ] CI pipeline is fully green (not just passing with warnings)

## Codebase Cleanup Check

Periodically audit the repository for structural hygiene:

- [ ] No empty directories (except those with `.gitkeep`)
- [ ] No duplicate files (e.g. same asset in multiple locations)
- [ ] No obsolete / orphaned files (e.g. old frontend copies after migration)
- [ ] VERSION file matches `package.json`, `app.json`, and documentation badges
- [ ] LICENSE file matches `package.json`, `pyproject.toml`, and README badges
- [ ] `.editorconfig` only contains language configs actually used in the project
- [ ] No misplaced files (e.g. app entry points at wrong directory level)
5 changes: 3 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
"name": "taskflow",
"version": "0.0.1",
"version": "1.2.0",
"license": "CNCL-1.0",
"description": "Cross-platform (Web / Android / iOS) task manager built on React Native + Expo. TypeScript, Zustand, AsyncStorage.",
"main": "node_modules/expo/AppEntry.js",
"scripts": {
Expand Down Expand Up @@ -40,7 +41,7 @@
"name": "badhope",
"url": "https://github.com/badhope"
},
"license": "MIT",
"license": "CNCL-1.0",
"homepage": "https://github.com/MS33834/taskflow#readme",
"repository": {
"type": "git",
Expand Down
Loading