-
Notifications
You must be signed in to change notification settings - Fork 38
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 #245 from setaman/dev
feat: v2
- Loading branch information
Showing
97 changed files
with
27,328 additions
and
27,888 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,8 @@ | ||
version: 2 | ||
exclude_patterns: | ||
- "tests" | ||
- "demo" | ||
plugins: | ||
eslint: | ||
enabled: true | ||
channel: "eslint-7" |
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,105 @@ | ||
# yaml-language-server: $schema=https://coderabbit.ai/integrations/schema.v2.json | ||
language: en-US | ||
tone_instructions: '' | ||
early_access: true | ||
enable_free_tier: true | ||
reviews: | ||
profile: chill | ||
request_changes_workflow: false | ||
high_level_summary: true | ||
high_level_summary_placeholder: '@coderabbitai summary' | ||
auto_title_placeholder: '@coderabbitai' | ||
review_status: true | ||
poem: false | ||
collapse_walkthrough: true | ||
sequence_diagrams: false | ||
changed_files_summary: true | ||
labeling_instructions: [] | ||
path_filters: | ||
- '!App.vue' | ||
path_instructions: [] | ||
abort_on_close: true | ||
auto_review: | ||
enabled: true | ||
auto_incremental_review: true | ||
ignore_title_keywords: [] | ||
labels: [] | ||
drafts: false | ||
base_branches: | ||
- master | ||
- dev | ||
- v2-dev | ||
tools: | ||
shellcheck: | ||
enabled: true | ||
ruff: | ||
enabled: false | ||
markdownlint: | ||
enabled: true | ||
github-checks: | ||
enabled: true | ||
timeout_ms: 90000 | ||
languagetool: | ||
enabled: true | ||
enabled_only: false | ||
level: default | ||
enabled_rules: [] | ||
disabled_rules: [] | ||
enabled_categories: [] | ||
disabled_categories: [] | ||
biome: | ||
enabled: true | ||
hadolint: | ||
enabled: true | ||
swiftlint: | ||
enabled: false | ||
phpstan: | ||
enabled: false | ||
level: default | ||
golangci-lint: | ||
enabled: false | ||
yamllint: | ||
enabled: true | ||
gitleaks: | ||
enabled: true | ||
checkov: | ||
enabled: false | ||
detekt: | ||
enabled: false | ||
eslint: | ||
enabled: true | ||
rubocop: | ||
enabled: false | ||
buf: | ||
enabled: false | ||
regal: | ||
enabled: false | ||
actionlint: | ||
enabled: true | ||
pmd: | ||
enabled: false | ||
cppcheck: | ||
enabled: false | ||
semgrep: | ||
enabled: true | ||
circleci: | ||
enabled: true | ||
ast-grep: | ||
packages: [] | ||
rule_dirs: [] | ||
util_dirs: [] | ||
essential_rules: true | ||
chat: | ||
auto_reply: true | ||
knowledge_base: | ||
opt_out: false | ||
learnings: | ||
scope: auto | ||
issues: | ||
scope: auto | ||
jira: | ||
project_keys: [] | ||
linear: | ||
team_keys: [] | ||
pull_requests: | ||
scope: auto |
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 @@ | ||
App.vue | ||
tests |
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,6 @@ | ||
text=auto | ||
|
||
*.js eol=lf | ||
*.jsx eol=lf | ||
*.json eol=lf | ||
*.vue eol=lf |
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,38 @@ | ||
name: Build and test | ||
|
||
on: | ||
push: | ||
branches: | ||
- master | ||
- dev | ||
- v2-dev | ||
paths: | ||
- "src/**" | ||
- "!*.md" | ||
pull_request: | ||
branches: | ||
- master | ||
- dev | ||
- v2-dev | ||
paths: | ||
- "src/**" | ||
- "!*.md" | ||
|
||
jobs: | ||
build-test: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
with: | ||
persist-credentials: false | ||
- uses: actions/setup-node@v4 | ||
with: | ||
node-version: 20 | ||
- name: Install dependencies | ||
run: npm ci | ||
- name: Lint | ||
run: npm run lint | ||
- name: Build | ||
run: npm run build | ||
- name: Unit tests | ||
run: npm run test |
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 @@ | ||
npx --no -- 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 @@ | ||
npm run lint |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.