forked from onecx/onecx-shell-ui
-
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.
feat: add onecx watermark (onecx#453)
* feat: add onecx watermark, fix translations * feat: add husky * feat: add favicon * fix: adjust text size on error pages * fix: tuning error pages * fix: tuning error pages 2 * fix: added missed html * fix: code smells * fix: code smells * fix: code smells
- Loading branch information
Showing
26 changed files
with
2,982 additions
and
494 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,9 @@ | ||
{ | ||
"extends": ["@commitlint/config-conventional"], | ||
"rules": { | ||
"type-case": [2, "always", ["lowerCase"]], | ||
"type-enum": [2, "always", ["build", "ci", "docs", "feat", "fix", "perf", "refactor", "revert", "style", "ticket"]], | ||
"subject-min-length": [2, "always", [5]], | ||
"subject-max-length": [2, "always", [200]] | ||
} | ||
} |
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,2 @@ | ||
|
||
npx --no-install commitlint --edit $1 |
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,10 @@ | ||
# .husky/pre-commit | ||
|
||
bash << EOF | ||
|
||
echo "[Husky] Running lint check on changed files:" | ||
nx lint --cache=true | ||
echo "[Husky] Running prettier check on changed files:" | ||
npx prettier -c --cache . | ||
|
||
EOF |
Oops, something went wrong.