Skip to content

Commit

Permalink
merge vue 3.5
Browse files Browse the repository at this point in the history
  • Loading branch information
ryanlin1986 committed Oct 21, 2024
0 parents commit 6c21f4b
Show file tree
Hide file tree
Showing 354 changed files with 56,307 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
[*]
tab_width = 4
trim_trailing_whitespace = true
end_of_line = lf
indent_size = 4
indent_style = space
insert_final_newline = true
charset = utf-8
1 change: 1 addition & 0 deletions .eslintignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
**/*.js
10 changes: 10 additions & 0 deletions .eslintrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
{
"root": true,
"parser": "@typescript-eslint/parser",
"plugins": ["@typescript-eslint", "jest", "prettier"],
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/recommended",
"plugin:jest/recommended"
]
}
42 changes: 42 additions & 0 deletions .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
---
name: 报告缺陷
about: 报告缺陷以帮助我们改进
---

### 编辑模式

<!-- 请选择你遇到问题时使用的编辑模式(把正常情况模式删掉):-->

* `wysiwyg` 所见即所得模式
* `ir` 即时渲染模式
* `sv` 分屏编辑预览模式

### 描述问题

<!-- 请尽量清晰精准地描述你碰到的问题。-->

````````markdown
如果是解析渲染问题的话请在此处贴入 Markdown 原文
````````

### 期待的结果

<!-- 请尽量清晰精准地描述你所期待的结果。-->

### 截屏或录像

<!--
如果可能,请尽量附加截图或录像来描述你遇到的问题。
(Windows 下推荐使用 [Screen2Gif](https://www.screentogif.com/) 进行录屏。如果是编辑器输入相关问题,使用 Screen2Gif 录制结束后请打开`图像 - 按键`)
-->

### 版本信息

* 版本:
* 操作系统:
* 浏览器:

### 其他信息

<!-- 请提供其他附加信息帮助我们诊断问题。 -->
8 changes: 8 additions & 0 deletions .github/ISSUE_TEMPLATE/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
blank_issues_enabled: false
contact_links:
- name: Vditor 官方讨论区
url: https://ld246.com/tag/vditor
about: 欢迎到这里反馈问题和提出建议,国内访问的话会比 GitHub 更丝滑流畅一些
- name: 思源笔记问题反馈
url: https://github.com/siyuan-note/siyuan
about: 思源笔记相关问题请到这里反馈
20 changes: 20 additions & 0 deletions .github/ISSUE_TEMPLATE/feature_request.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
---
name: 请求新功能
about: 提出你期待的功能特性
---

### 你在什么场景下需要该功能?

<!-- 请尽量清晰精准地描述你期待的功能和应用场景。-->

### 描述最优的解决方案

<!-- 请尝试描述最优的解决方案,也许已经有类似软件实现了该特性,也请列出给我们参考。-->

### 描述候选解决方案

<!-- 请尽量清晰精准地描述你能接受的候选解决方案。-->

### 其他信息

<!-- 请提供关于该功能建议的其他附加信息。-->
5 changes: 5 additions & 0 deletions .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
<!--
* PR 请提交到 dev 开发分支上
-->
14 changes: 14 additions & 0 deletions .github/SECURITY.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# 安全报告 Security report

如果你发现安全相关漏洞请通过如下任意一种方式告知我们:\
If you find security-related vulnerabilities, please inform us in any of the following ways:

* 直接开 Issue(请隐去站点、实际项目等敏感信息)\
Open Issue directly (please hide sensitive information such as site and actual project)
* 发邮件至 [email protected]\
Send an email to [email protected]
* 在链滴上[私信我](https://ld246.com/chats/88250) \
On the LianDi [Private Message](https://ld246.com/chats/88250)

非常感谢!\
Thank you very much!
7 changes: 7 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
.idea
**/.DS_Store
/dist
/node_modules
/demo/dist
/coverage
.vscode/*
1 change: 1 addition & 0 deletions .npmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
@b3log:registry=https://npm.pkg.github.com/
19 changes: 19 additions & 0 deletions .prettierrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
{
"arrowParens": "always",
"bracketSpacing": true,
"embeddedLanguageFormatting": "auto",
"htmlWhitespaceSensitivity": "css",
"insertPragma": false,
"jsxBracketSameLine": false,
"jsxSingleQuote": false,
"printWidth": 80,
"proseWrap": "preserve",
"quoteProps": "as-needed",
"requirePragma": false,
"semi": false,
"singleQuote": false,
"tabWidth": 4,
"trailingComma": "es5",
"useTabs": false,
"vueIndentScriptAndStyle": false
}
Loading

0 comments on commit 6c21f4b

Please sign in to comment.