Skip to content
This repository was archived by the owner on Jul 19, 2025. It is now read-only.

Commit 8a99f90

Browse files
authored
style: format html&markdown files (#11531)
1 parent 7c75cc3 commit 8a99f90

File tree

32 files changed

+1451
-1319
lines changed

32 files changed

+1451
-1319
lines changed

.github/commit-convention.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ This reverts commit 667ecc1654a317a13331b17617d973392f415f02.
4444

4545
### Full Message Format
4646

47-
A commit message consists of a **header**, **body** and **footer**. The header has a **type**, **scope** and **subject**:
47+
A commit message consists of a **header**, **body** and **footer**. The header has a **type**, **scope** and **subject**:
4848

4949
```
5050
<type>(<scope>): <subject>
@@ -74,9 +74,9 @@ The scope could be anything specifying the place of the commit change. For examp
7474

7575
The subject contains a succinct description of the change:
7676

77-
* use the imperative, present tense: "change" not "changed" nor "changes"
78-
* don't capitalize the first letter
79-
* no dot (.) at the end
77+
- use the imperative, present tense: "change" not "changed" nor "changes"
78+
- don't capitalize the first letter
79+
- no dot (.) at the end
8080

8181
### Body
8282

.github/contributing.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,6 @@ Hi! I'm really excited that you are interested in contributing to Vue.js. Before
3535

3636
Another aspect of it is that large scale stylistic changes result in massive diffs that touch multiple files, adding noise to the git history and makes tracing behavior changes across commits more cumbersome.
3737

38-
3938
### Pull Request Checklist
4039

4140
- Vue core has two primary work branches: `main` and `minor`.

.github/maintenance.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -80,6 +80,7 @@ Depending on the type of the PR, different considerations need to be taken into
8080
- Make sure it doesn't accidentally cause dev-only or compiler-only code branches to be included in the runtime build. Notable case is that some functions in @vue/shared are compiler-only and should not be used in runtime code, e.g. `isHTMLTag` and `isSVGTag`.
8181

8282
- Performance
83+
8384
- Be careful about code changes in "hot paths", in particular the Virtual DOM renderer (`runtime-core/src/renderer.ts`) and component instantiation code.
8485

8586
- Potential Breakage

.prettierignore

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
11
dist
2-
*.md
3-
*.html
42
pnpm-lock.yaml
3+
CHANGELOG*.md

SECURITY.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,6 @@ Please note that we do not consider XSS via template expressions a valid attack
1010

1111
We would like to thank the following security researchers for responsibly disclosing security issues to us.
1212

13-
- Jeet Pal - [@jeetpal2007](https://github.com/jeetpal2007) | [Email]([email protected]) | [LinkedIn](https://in.linkedin.com/in/jeet-pal-22601a290 )
13+
- Jeet Pal - [@jeetpal2007](https://github.com/jeetpal2007) | [Email]([email protected]) | [LinkedIn](https://in.linkedin.com/in/jeet-pal-22601a290)
1414
- Mix - [@mnixry](https://github.com/mnixry)
1515
- Aviv Keller - [@RedYetiDev](https://github.com/redyetidev) | [LinkedIn](https://www.linkedin.com/in/redyetidev) <[email protected]>

packages/compiler-dom/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
# @vue/compiler-dom
1+
# @vue/compiler-dom

packages/compiler-ssr/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
# @vue/compiler-ssr
1+
# @vue/compiler-ssr

packages/runtime-core/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ const { render, createApp } = createRenderer({
1313
patchProp,
1414
insert,
1515
remove,
16-
createElement
16+
createElement,
1717
// ...
1818
})
1919

packages/runtime-dom/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
# @vue/runtime-dom
22

3-
``` js
3+
```js
44
import { h, createApp } from '@vue/runtime-dom'
55

66
const RootComponent = {
77
render() {
88
return h('div', 'hello world')
9-
}
9+
},
1010
}
1111

1212
createApp(RootComponent).mount('#app')

packages/runtime-test/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ This is for Vue's own internal tests only - it ensures logic tested using this p
44

55
It can also be used as a reference for implementing a custom renderer.
66

7-
``` js
7+
```js
88
import { h, render, nodeOps, dumpOps } from '@vue/runtime-test'
99

1010
const App = {

0 commit comments

Comments
 (0)