diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..92207aa --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,2 @@ +- 0.1.1 + - Added autoclosing quotes \ No newline at end of file diff --git a/LICENSE.md b/LICENSE.md new file mode 100644 index 0000000..ef74dbf --- /dev/null +++ b/LICENSE.md @@ -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. \ No newline at end of file diff --git a/README.md b/README.md index aca9a2d..0453850 100644 --- a/README.md +++ b/README.md @@ -8,3 +8,5 @@ This extension adds elixir support for VSCode * Syntax Coloring * Snippets * Intellisense (thanks to [fr1zle](https://github.com/fr1zle)) + + diff --git a/package.json b/package.json index bd93e81..bc0c6d5 100644 --- a/package.json +++ b/package.json @@ -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" + } +} \ No newline at end of file