Skip to content

Commit

Permalink
Adding meta information and license
Browse files Browse the repository at this point in the history
  • Loading branch information
mat-mcloughlin committed Dec 3, 2016
1 parent 9fcafcb commit 4c62be3
Show file tree
Hide file tree
Showing 4 changed files with 121 additions and 84 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
- 0.1.1
- Added autoclosing quotes
21 changes: 21 additions & 0 deletions LICENSE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
MIT License

Copyright (c) 2016 Mathew McLoughlin

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,5 @@ This extension adds elixir support for VSCode
* Syntax Coloring
* Snippets
* Intellisense (thanks to [fr1zle](https://github.com/fr1zle))


180 changes: 96 additions & 84 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,85 +1,97 @@
{
"name": "vscode-elixir",
"displayName": "vscode-elixir",
"description": "Elixir support for VSCode",
"keywords": ["Elixir", "syntax"],
"version": "0.1.0",
"publisher": "mjmcloug",
"icon": "images/logo.png",
"main": "./out/src/elixirMain",
"engines": {
"vscode": "^0.10.1"
},
"categories": [
"Languages"
],
"activationEvents": [
"onLanguage:elixir"
],
"contributes": {
"languages": [
{
"id": "elixir",
"aliases": [
"Elixir",
"elixir"
],
"extensions": [
".ex",
".exs"
],
"configuration": "./elixir.configuration.json"
},
{
"id": "Eex",
"aliases": [
"Eex",
"eex"
],
"extensions": [
".eex"
]
},
{
"id": "HTML (Eex)",
"aliases": [
"HTML (Eex)"
],
"extensions": [
".html.eex"
]
}
],
"grammars": [
{
"language": "elixir",
"scopeName": "source.elixir",
"path": "./syntaxes/elixir.json"
},
{
"language": "Eex",
"scopeName": "text.elixir",
"path": "./syntaxes/eex.json"
},
{
"language": "HTML (Eex)",
"scopeName": "text.html.elixir",
"path": "./syntaxes/html (eex).json"
}
],
"snippets": [
{
"language": "elixir",
"path": "./snippets/snippets.json"
}
]
},
"scripts": {
"vscode:prepublish": "node ./node_modules/vscode/bin/compile",
"compile": "node ./node_modules/vscode/bin/compile -watch -p ./"
},
"devDependencies": {
"typescript": "^1.6.2",
"vscode": "0.10.x"
}
}
"name": "vscode-elixir",
"displayName": "vscode-elixir",
"description": "Elixir support for VSCode",
"keywords": [
"Elixir",
"syntax"
],
"version": "0.1.1",
"publisher": "mjmcloug",
"icon": "images/logo.png",
"main": "./out/src/elixirMain",
"license": "MIT",
"engines": {
"vscode": "^0.10.1"
},
"repository": {
"type": "git",
"url": "https://github.com/mat-mcloughlin/vscode-elixir.git"
},
"bugs": {
"url": "https://github.com/mat-mcloughlin/vscode-elixir/issues"
},
"homepage": "https://github.com/mat-mcloughlin/vscode-elixir",
"categories": [
"Languages"
],
"activationEvents": [
"onLanguage:elixir"
],
"contributes": {
"languages": [
{
"id": "elixir",
"aliases": [
"Elixir",
"elixir"
],
"extensions": [
".ex",
".exs"
],
"configuration": "./elixir.configuration.json"
},
{
"id": "Eex",
"aliases": [
"Eex",
"eex"
],
"extensions": [
".eex"
]
},
{
"id": "HTML (Eex)",
"aliases": [
"HTML (Eex)"
],
"extensions": [
".html.eex"
]
}
],
"grammars": [
{
"language": "elixir",
"scopeName": "source.elixir",
"path": "./syntaxes/elixir.json"
},
{
"language": "Eex",
"scopeName": "text.elixir",
"path": "./syntaxes/eex.json"
},
{
"language": "HTML (Eex)",
"scopeName": "text.html.elixir",
"path": "./syntaxes/html (eex).json"
}
],
"snippets": [
{
"language": "elixir",
"path": "./snippets/snippets.json"
}
]
},
"scripts": {
"vscode:prepublish": "node ./node_modules/vscode/bin/compile",
"compile": "node ./node_modules/vscode/bin/compile -watch -p ./"
},
"devDependencies": {
"typescript": "^1.6.2",
"vscode": "0.10.x"
}
}

0 comments on commit 4c62be3

Please sign in to comment.