Skip to content

Commit 4c62be3

Browse files
Adding meta information and license
1 parent 9fcafcb commit 4c62be3

File tree

4 files changed

+121
-84
lines changed

4 files changed

+121
-84
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
- 0.1.1
2+
- Added autoclosing quotes

LICENSE.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2016 Mathew McLoughlin
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,3 +8,5 @@ This extension adds elixir support for VSCode
88
* Syntax Coloring
99
* Snippets
1010
* Intellisense (thanks to [fr1zle](https://github.com/fr1zle))
11+
12+

package.json

Lines changed: 96 additions & 84 deletions
Original file line numberDiff line numberDiff line change
@@ -1,85 +1,97 @@
11
{
2-
"name": "vscode-elixir",
3-
"displayName": "vscode-elixir",
4-
"description": "Elixir support for VSCode",
5-
"keywords": ["Elixir", "syntax"],
6-
"version": "0.1.0",
7-
"publisher": "mjmcloug",
8-
"icon": "images/logo.png",
9-
"main": "./out/src/elixirMain",
10-
"engines": {
11-
"vscode": "^0.10.1"
12-
},
13-
"categories": [
14-
"Languages"
15-
],
16-
"activationEvents": [
17-
"onLanguage:elixir"
18-
],
19-
"contributes": {
20-
"languages": [
21-
{
22-
"id": "elixir",
23-
"aliases": [
24-
"Elixir",
25-
"elixir"
26-
],
27-
"extensions": [
28-
".ex",
29-
".exs"
30-
],
31-
"configuration": "./elixir.configuration.json"
32-
},
33-
{
34-
"id": "Eex",
35-
"aliases": [
36-
"Eex",
37-
"eex"
38-
],
39-
"extensions": [
40-
".eex"
41-
]
42-
},
43-
{
44-
"id": "HTML (Eex)",
45-
"aliases": [
46-
"HTML (Eex)"
47-
],
48-
"extensions": [
49-
".html.eex"
50-
]
51-
}
52-
],
53-
"grammars": [
54-
{
55-
"language": "elixir",
56-
"scopeName": "source.elixir",
57-
"path": "./syntaxes/elixir.json"
58-
},
59-
{
60-
"language": "Eex",
61-
"scopeName": "text.elixir",
62-
"path": "./syntaxes/eex.json"
63-
},
64-
{
65-
"language": "HTML (Eex)",
66-
"scopeName": "text.html.elixir",
67-
"path": "./syntaxes/html (eex).json"
68-
}
69-
],
70-
"snippets": [
71-
{
72-
"language": "elixir",
73-
"path": "./snippets/snippets.json"
74-
}
75-
]
76-
},
77-
"scripts": {
78-
"vscode:prepublish": "node ./node_modules/vscode/bin/compile",
79-
"compile": "node ./node_modules/vscode/bin/compile -watch -p ./"
80-
},
81-
"devDependencies": {
82-
"typescript": "^1.6.2",
83-
"vscode": "0.10.x"
84-
}
85-
}
2+
"name": "vscode-elixir",
3+
"displayName": "vscode-elixir",
4+
"description": "Elixir support for VSCode",
5+
"keywords": [
6+
"Elixir",
7+
"syntax"
8+
],
9+
"version": "0.1.1",
10+
"publisher": "mjmcloug",
11+
"icon": "images/logo.png",
12+
"main": "./out/src/elixirMain",
13+
"license": "MIT",
14+
"engines": {
15+
"vscode": "^0.10.1"
16+
},
17+
"repository": {
18+
"type": "git",
19+
"url": "https://github.com/mat-mcloughlin/vscode-elixir.git"
20+
},
21+
"bugs": {
22+
"url": "https://github.com/mat-mcloughlin/vscode-elixir/issues"
23+
},
24+
"homepage": "https://github.com/mat-mcloughlin/vscode-elixir",
25+
"categories": [
26+
"Languages"
27+
],
28+
"activationEvents": [
29+
"onLanguage:elixir"
30+
],
31+
"contributes": {
32+
"languages": [
33+
{
34+
"id": "elixir",
35+
"aliases": [
36+
"Elixir",
37+
"elixir"
38+
],
39+
"extensions": [
40+
".ex",
41+
".exs"
42+
],
43+
"configuration": "./elixir.configuration.json"
44+
},
45+
{
46+
"id": "Eex",
47+
"aliases": [
48+
"Eex",
49+
"eex"
50+
],
51+
"extensions": [
52+
".eex"
53+
]
54+
},
55+
{
56+
"id": "HTML (Eex)",
57+
"aliases": [
58+
"HTML (Eex)"
59+
],
60+
"extensions": [
61+
".html.eex"
62+
]
63+
}
64+
],
65+
"grammars": [
66+
{
67+
"language": "elixir",
68+
"scopeName": "source.elixir",
69+
"path": "./syntaxes/elixir.json"
70+
},
71+
{
72+
"language": "Eex",
73+
"scopeName": "text.elixir",
74+
"path": "./syntaxes/eex.json"
75+
},
76+
{
77+
"language": "HTML (Eex)",
78+
"scopeName": "text.html.elixir",
79+
"path": "./syntaxes/html (eex).json"
80+
}
81+
],
82+
"snippets": [
83+
{
84+
"language": "elixir",
85+
"path": "./snippets/snippets.json"
86+
}
87+
]
88+
},
89+
"scripts": {
90+
"vscode:prepublish": "node ./node_modules/vscode/bin/compile",
91+
"compile": "node ./node_modules/vscode/bin/compile -watch -p ./"
92+
},
93+
"devDependencies": {
94+
"typescript": "^1.6.2",
95+
"vscode": "0.10.x"
96+
}
97+
}

0 commit comments

Comments
 (0)