Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
szmxx committed Sep 27, 2023
1 parent 0b4e138 commit 022c965
Show file tree
Hide file tree
Showing 99 changed files with 7,802 additions and 4,424 deletions.
2 changes: 1 addition & 1 deletion hi/.commitlintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"type-empty": [2, "never"],
"subject-empty": [2, "never"],
"scope-empty": [0],
"scope-enum": [2, "always", ["core", "style", "docs", "test"]]
"scope-enum": [2, "always", ["core", "style", "docs", "test", "server"]]
},
"prompt": {
"settings": {
Expand Down
9 changes: 6 additions & 3 deletions hi/.eslintrc
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,7 @@
"plugin:vue/vue3-recommended",
"eslint:recommended",
"@vue/typescript/recommended",
"@vue/prettier",
"./.eslintrc-auto-import.json"
"@vue/prettier"
],
"plugins": ["vue"],
"settings": {
Expand Down Expand Up @@ -66,6 +65,10 @@
],
"rules": {
"no-console": ["warn", { "allow": ["error"] }],
"no-debugger": "warn"
"no-debugger": "warn",
"@typescript-eslint/no-non-null-assertion": "off",
"vue/multi-word-component-names": "off",
"@typescript-eslint/no-empty-function": "off",
"prefer-const": "off"
}
}
323 changes: 0 additions & 323 deletions hi/.eslintrc-auto-import.json

This file was deleted.

2 changes: 1 addition & 1 deletion hi/.github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
cache: pnpm

- name: Install
run: pnpm install --no-frozen-lockfile
run: pnpm install

- name: Build
run: pnpm run build
2 changes: 1 addition & 1 deletion hi/.github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
cache: pnpm

- name: Install
run: pnpm install --no-frozen-lockfile
run: pnpm install

- name: Lint
run: pnpm run tslint
7 changes: 1 addition & 6 deletions hi/.github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,6 @@ on:
branches:
- main

permissions:
contents: read
env:
CI: true

jobs:
test:
runs-on: ubuntu-latest
Expand All @@ -26,7 +21,7 @@ jobs:
cache: pnpm

- name: Install
run: pnpm install --no-frozen-lockfile
run: pnpm install

- name: Test
run: pnpm run test
Loading

0 comments on commit 022c965

Please sign in to comment.