Skip to content

Commit 8384cbb

Browse files
committed
chore: update all-contributors
1 parent 120bdbc commit 8384cbb

File tree

4 files changed

+24
-21
lines changed

4 files changed

+24
-21
lines changed

.all-contributorsrc

+2-1
Original file line numberDiff line numberDiff line change
@@ -39,5 +39,6 @@
3939
"projectOwner": "XadillaX",
4040
"repoType": "github",
4141
"repoHost": "https://github.com",
42-
"skipCi": true
42+
"skipCi": true,
43+
"badgeTemplate": "<a href=\"#contributors-\"><img src=\"https://img.shields.io/badge/<%= contributors.length %>-ALL%20CONTRIBUTORS?style=for-the-badge&colorA=FF69b4&colorB=cc47a4&label=ALL%20CONTRIBUTORS\" /></a>"
4344
}

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -62,3 +62,4 @@ typings/
6262

6363
*.vsix
6464
out
65+
package-lock.json

README.md

+14-18
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,20 @@
11
<p align="center">
2-
<!-- ALL-CONTRIBUTORS-BADGE:START - Do not remove or modify this section -->
3-
[![All Contributors](https://img.shields.io/badge/all_contributors-3-orange.svg?style=flat-square)](#contributors-)
4-
<!-- ALL-CONTRIBUTORS-BADGE:END -->
5-
<img height="200" src="https://github.com/XadillaX/vscode-language-viml/raw/master/assets/README.png" />
2+
<img height="200" src="https://github.com/XadillaX/vscode-language-viml/raw/master/assets/README.png" />
63
</p>
74

85
<p align="center">
9-
<a href="https://marketplace.visualstudio.com/items?itemName=XadillaX.viml">
10-
<img src="https://vsmarketplacebadge.apphb.com/version-short/XadillaX.viml.svg?style=for-the-badge&colorA=FF7800&colorB=CC5600&label=VS%20MARKETPLACE" />
11-
</a>
12-
<a href="https://marketplace.visualstudio.com/items?itemName=XadillaX.viml">
13-
<img src="https://vsmarketplacebadge.apphb.com/downloads-short/XadillaX.viml.svg?style=for-the-badge&colorA=5DDB61&colorB=4BC74F&label=DOWNLOADS" />
14-
</a>
15-
<a href="https://marketplace.visualstudio.com/items?itemName=XadillaX.viml">
16-
<img src="https://vsmarketplacebadge.apphb.com/rating-star/XadillaX.viml.svg?style=for-the-badge&colorA=FBBD30&colorB=F2AA08" />
17-
</a>
6+
<a href="https://marketplace.visualstudio.com/items?itemName=XadillaX.viml">
7+
<img src="https://vsmarketplacebadges.dev/version-short/XadillaX.viml.svg?style=for-the-badge&colorA=FF7800&colorB=CC5600&label=VS%20MARKETPLACE" />
8+
</a>
9+
<a href="https://marketplace.visualstudio.com/items?itemName=XadillaX.viml">
10+
<img src="https://vsmarketplacebadges.dev/downloads-short/XadillaX.viml.svg?style=for-the-badge&colorA=5DDB61&colorB=4BC74F&label=DOWNLOADS" />
11+
</a>
12+
<a href="https://marketplace.visualstudio.com/items?itemName=XadillaX.viml">
13+
<img src="https://vsmarketplacebadges.dev/rating-star/XadillaX.viml.svg?style=for-the-badge&colorA=FBBD30&colorB=F2AA08" />
14+
</a>
15+
<!-- ALL-CONTRIBUTORS-BADGE:START - Do not remove or modify this section -->
16+
<a href="#contributors-"><img src="https://img.shields.io/badge/3-ALL%20CONTRIBUTORS?style=for-the-badge&colorA=FF69b4&colorB=cc47a4&label=ALL%20CONTRIBUTORS" /></a>
17+
<!-- ALL-CONTRIBUTORS-BADGE:END -->
1818
</p>
1919

2020
## What does this extension do?
@@ -47,10 +47,6 @@ Language Server Protocol depends on [vim-language-server](https://github.com/iam
4747
- **Vim Snippet files** (`*.snip`, `*.snippet`, `*.snippets`, etc);
4848
+ Syntax highlighting for embedding **Vim related syntaxes** (see above) in **Markdown files**.
4949

50-
## Contribution
51-
52-
Pull requests and Issues are welcomed.
53-
5450
## Contributors ✨
5551

5652
Thanks goes to these wonderful people ([emoji key](https://allcontributors.org/docs/en/emoji-key)):
@@ -71,4 +67,4 @@ Thanks goes to these wonderful people ([emoji key](https://allcontributors.org/d
7167

7268
<!-- ALL-CONTRIBUTORS-LIST:END -->
7369

74-
This project follows the [all-contributors](https://github.com/all-contributors/all-contributors) specification. Contributions of any kind welcome!
70+
This project follows the [all-contributors](https://github.com/all-contributors/all-contributors) specification. Contributions of any kind welcome!

package.json

+7-2
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@
3535
"devDependencies": {
3636
"@types/node": "^17.0.21",
3737
"@types/vscode": "^1.20.0",
38+
"all-contributors-cli": "^6.20.0",
3839
"auto-changelog": "^2.4.0",
3940
"eslint": "^8.0.0",
4041
"eslint-config-egg": "^11.0.0",
@@ -107,12 +108,16 @@
107108
},
108109
{
109110
"id": "vim-help",
110-
"aliases": [ "Vim Help" ],
111+
"aliases": [
112+
"Vim Help"
113+
],
111114
"configuration": "./syntaxes/help.language-configuration.json"
112115
},
113116
{
114117
"id": "vim-snippet",
115-
"aliases": [ "Vim Snippet" ],
118+
"aliases": [
119+
"Vim Snippet"
120+
],
116121
"extensions": [
117122
".snip",
118123
".snippet",

0 commit comments

Comments
 (0)