-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
83 lines (83 loc) · 2.52 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "ignore-files",
"displayName": "Ignore files",
"description": "Syntax highlighting for 'ignore' files : gitignore, npmignore, dockerignore, coffeelintignore, ...",
"version": "0.1.0",
"publisher": "ldez",
"repository": {
"type": "git",
"url": "https://github.com/ldez/vscode-language-ignore"
},
"engines": {
"vscode": "^1.32.0"
},
"categories": [
"Programming Languages"
],
"contributes": {
"languages": [
{
"id": "ignore",
"aliases": [
"Ignore File (gitignore syntax)",
"ignore"
],
"extensions": [
".gitignore",
".npmignore",
".coffeelintignore",
".dockerignore",
".atomignore",
".vscodeignore",
".eslintignore",
".prettierignore",
".stylelintignore",
".markdownlintignore"
],
"configuration": "./language-configuration.json"
},
{
"id": "ignore-slug",
"aliases": [
"Ignore File for Slug compiler",
"ignore-slug"
],
"extensions": [
".slugignore"
],
"filenames": [
".gitignore"
],
"configuration": "./language-configuration.json"
},
{
"id": "ignore-hgignore",
"aliases": [
"Ignore File for Mecurial",
"ignore-hg"
],
"extensions": [
".hgignore"
],
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "ignore",
"scopeName": "text.ignore",
"path": "./syntaxes/ignore.tmLanguage.json"
},
{
"language": "ignore-slug",
"scopeName": "text.ignore.slugignore",
"path": "./syntaxes/ignore-slug.tmLanguage.json"
},
{
"language": "ignore-hgignore",
"scopeName": "text.ignore.hgignore",
"path": "./syntaxes/ignore-mercurial.tmLanguage.json"
}
]
}
}