diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md
index 52fdb59a79..dea6c38a3d 100644
--- a/CONTRIBUTING.md
+++ b/CONTRIBUTING.md
@@ -40,7 +40,7 @@ To add support for a new extension:
1. Add your extension to the language entry in [`languages.yml`][languages], keeping the extensions in alphabetical and case-sensitive (uppercase before lowercase) order, with the exception of the primary extension; the primary extension should be first.
1. Add at least one sample for your extension to the [samples directory][samples] in the correct subdirectory. We'd prefer examples of real-world code showing common usage. The more representative of the structure of the language, the better.
-1. Open a pull request, linking to a [GitHub search result](https://github.com/search?utf8=%E2%9C%93&q=extension%3Aboot+NOT+nothack&type=Code&ref=searchresults) showing in-the-wild usage.
+1. Open a pull request, linking to a [GitHub search result](https://github.com/search?utf8=%E2%9C%93&q=extension%3Aboot+NOT+nothack&type=Code&ref=searchresults) showing in-the-wild usage.
If you are adding a sample, please state clearly the license covering the code in the sample, and if possible, link to the original source of the sample.
Additionally, if this extension is already listed in [`languages.yml`][languages] and associated with another language, then sometimes a few more steps will need to be taken:
@@ -57,12 +57,12 @@ We try only to add languages once they have some usage on GitHub. In most cases
To add support for a new language:
1. Add an entry for your language to [`languages.yml`][languages]. Omit the `language_id` field for now.
-1. Add a syntax-highlighting grammar for your language using: `script/add-grammar https://github.com/JaneSmith/MyGrammar`
- This command will analyze the grammar and, if no problems are found, add it to the repository. If problems are found, please report them to the grammar maintainer as you will not be able to add the grammar if problems are found.
+1. Add a syntax-highlighting grammar for your language using: `script/add-grammar https://github.com/JaneSmith/MyGrammar`
+ This command will analyze the grammar and, if no problems are found, add it to the repository. If problems are found, please report them to the grammar maintainer as you will not be able to add the grammar if problems are found.
**Please only add grammars that have [one of these licenses][licenses].**
1. Add samples for your language to the [samples directory][samples] in the correct subdirectory.
-1. Generate a unique ID for your language by running `script/update-ids`.
-1. Open a pull request, linking to a [GitHub search results](https://github.com/search?utf8=%E2%9C%93&q=extension%3Aboot+NOT+nothack&type=Code&ref=searchresults) showing in-the-wild usage.
+1. Generate a unique ID for your language by running `script/update-ids`.
+1. Open a pull request, linking to a [GitHub search results](https://github.com/search?utf8=%E2%9C%93&q=extension%3Aboot+NOT+nothack&type=Code&ref=searchresults) showing in-the-wild usage.
Please state clearly the license covering the code in the samples. Link directly to the original source if possible.
In addition, if your new language defines an extension that's already listed in [`languages.yml`][languages] (such as `.foo`) then sometimes a few more steps will need to be taken:
@@ -100,7 +100,7 @@ Switching the source of a grammar is really easy:
script/add-grammar --replace MyGrammar https://github.com/PeterPan/MyGrammar
-This command will analyze the grammar and, if no problems are found, add it to the repository. If problems are found, please report these problems to the grammar maintainer as you will not be able to add the grammar if problems are found.
+This command will analyze the grammar and, if no problems are found, add it to the repository. If problems are found, please report these problems to the grammar maintainer as you will not be able to add the grammar if problems are found.
**Please only add grammars that have [one of these licenses][licenses].**
@@ -142,7 +142,11 @@ If you are the current maintainer of this gem:
1. Create a branch for the release: `git checkout -b release-vxx.xx.xx`
1. Make sure your local dependencies are up to date: `script/bootstrap`
-1. If grammar submodules have not been updated recently, update them: `git submodule update --remote && git commit -a`
+1. If grammar submodules have not been updated recently, update them: `git submodule update --remote`. If any submodules are updated,
+ 1. update the license cache: `script/licensed`
+ 1. double check no problems found: `script/licensed status`
+ 1. verify and fix any problems identified
+ 1. commit all changes: `git commit -a`
1. Ensure that samples are updated: `bundle exec rake samples`
1. Ensure that tests are green: `bundle exec rake test`
1. Build a test gem `GEM_VERSION=$(git describe --tags 2>/dev/null | sed 's/-/./g' | sed 's/v//') bundle exec rake build_gem`
diff --git a/github-linguist.gemspec b/github-linguist.gemspec
index 9a41df2584..fd9c9c5593 100644
--- a/github-linguist.gemspec
+++ b/github-linguist.gemspec
@@ -27,6 +27,6 @@ Gem::Specification.new do |s|
s.add_development_dependency 'rake'
s.add_development_dependency 'yajl-ruby'
s.add_development_dependency 'color-proximity', '~> 0.2.1'
- s.add_development_dependency 'licensed', '~> 1.1.0'
+ s.add_development_dependency 'licensed', '~> 1.3.0'
s.add_development_dependency 'licensee'
end
diff --git a/script/licensed b/script/licensed
index 801808e392..f1756031ec 100755
--- a/script/licensed
+++ b/script/licensed
@@ -1,7 +1,5 @@
#!/usr/bin/env ruby
-# TODO: push these changes to licensor gem
-
require "bundler/setup"
require "licensed/cli"
require "optparse"
@@ -22,12 +20,19 @@ module Licensed
!Dir.glob(@glob).empty?
end
+ def submodule_version(directory)
+ return unless directory
+ Dir.chdir directory do
+ Licensed::Git.version(".")
+ end
+ end
+
def dependencies
Dir.glob(@glob).map do |directory|
- puts "caching #{directory}"
Licensed::Dependency.new(directory, {
"type" => Filesystem.type,
- "name" => File.basename(directory)
+ "name" => File.basename(directory),
+ "version" => submodule_version(directory)
})
end
end
diff --git a/test/test_grammars.rb b/test/test_grammars.rb
index efe021d542..d8645f2860 100644
--- a/test/test_grammars.rb
+++ b/test/test_grammars.rb
@@ -3,53 +3,6 @@
class TestGrammars < Minitest::Test
ROOT = File.expand_path("../..", __FILE__)
- # List of projects that are allowed without licenses
- PROJECT_WHITELIST = [
- "vendor/grammars/Sublime-Lasso", # No license file
- "vendor/grammars/blitzmax", # No license file
- "vendor/grammars/creole", # License filename is not LICENSE(.*)?
- ].freeze
-
- HASH_WHITELIST = [
- "4b4c1b4aff11b99e53091f95b24093655c0d9ed2", # Agda.tmbundle
- "a92c0e4e644206078a158d663b9f033d0d0aefbf", # ant.tmbundle
- "98eac91395c97ae090113e1b4527cae3228d563a", # bro-sublime
- "220e011c8d686129e9c4163a7c655b9d64f61e59", # elixir-tmbundle
- "55f431fb78e7b3cb6d18ef1042f70ebf4b8d838d", # factor
- "b81acf2ba52d312754bf5055845a723123bda388", # FreeMarker.tmbundle
- "ee77ce4cf9121bccc3e37ba6b98f8e7acd589aaf", # gap-tmbundle
- "4cfc7ce12de920ccc836bbab2d748151d5ba7e38", # go-tmbundle
- "01868f4a2476fad9abb8b7199ea1547d33cd48db", # hy.tmLanguage
- "6c2e34d62c08f97a3e2ece3eedc65fbd99873ff4", # idl.tmbundle
- "e68efca5a844aa78729cadcf42507013151e6605", # jflex.tmbundle
- "39f092c726491ca6a02354dbc6c3a0920bb44d4c", # mako-tmbundle
- "7821982b18bc35d6925cc16ece68d9c71f1fbba3", # moonscript-tmbundle
- "806dae0a87f95409496223dfd9a45cc57c878aeb", # PHP-Twig.tmbundle
- "0c216b112f3a4e6d5848128504d8378d8c7eee00", # r.tmbundle
- "da39a3ee5e6b4b0d3255bfef95601890afd80709", # SCSS.tmbundle
- "68539730d3cde34355f429f2267e265c1e030912", # smalltalk-tmbundle
- "4b5f67a54532ca6e49ba44cd135a510a74712e07", # Stylus
- "23d2538e33ce62d58abda2c039364b92f64ea6bc", # sublime-angelscript
- "38ce879dc8b217a080caa2ff9e2241c9505256d6", # sublime-shen
- "3df4ef028c6384b64bc59b8861d6c52093b2116d", # sublime-text-ox
- "c18bcd787325167bf1405629259c091d49064541", # Std license in README.md of many TextMate grammars like abap.tmbundle
- ].freeze
-
- # List of allowed SPDX license names
- LICENSE_WHITELIST = %w[
- apache-2.0
- bsd-2-clause
- bsd-3-clause
- isc
- mit
- mpl-2.0
- public
- textmate
- unlicense
- wtfpl
- zlib
- ].freeze
-
def setup
@grammars = YAML.load(File.read(File.join(ROOT, "grammars.yml")))
end
@@ -89,59 +42,6 @@ def test_readme_file_is_in_sync
assert_equal current_data, updated_data, "Grammar list is out-of-date. Run `script/list-grammars`"
end
- def test_submodules_have_recognized_licenses
- unrecognized = submodule_licenses.select { |k,v| v.nil? && Licensee.project(k).license_file }
- unrecognized.reject! { |k,v| PROJECT_WHITELIST.include?(k) }
- message = "The following submodules have unrecognized licenses:\n* #{unrecognized.keys.join("\n* ")}\n"
- message << "Please ensure that the project's LICENSE file contains the full text of the license"
- assert_equal Hash.new, unrecognized, message
- end
-
- def test_submodules_have_licenses
- unlicensed = submodule_licenses.select { |k,v| v.nil? }.reject { |k,v| PROJECT_WHITELIST.include?(k) }
- message = "The following submodules don't have licenses:\n* #{unlicensed.keys.join("\n* ")}\n"
- message << "Please ensure that the project has a LICENSE file, and that the LICENSE file contains the full text of the license"
- assert_equal Hash.new, unlicensed, message
- end
-
- def test_submodules_have_approved_licenses
- unapproved = submodule_licenses.reject { |k,v| LICENSE_WHITELIST.include?(v) ||
- PROJECT_WHITELIST.include?(k) ||
- HASH_WHITELIST.include?(v) }
- .map { |k,v| "#{k}: #{v}"}
- message = "The following submodules have unapproved licenses:\n* #{unapproved.join("\n* ")}\n"
- message << "The license must be added to the LICENSE_WHITELIST in /test/test_grammars.rb once approved"
- assert_equal [], unapproved, message
- end
-
- def test_whitelisted_submodules_dont_have_licenses
- licensed = submodule_licenses.reject { |k,v| v.nil? }.select { |k,v| PROJECT_WHITELIST.include?(k) }
- message = "The following whitelisted submodules have a license:\n* #{licensed.keys.join("\n* ")}\n"
- message << "Please remove them from the project whitelist"
- assert_equal Hash.new, licensed, message
- end
-
- def test_whitelisted_hashes_dont_have_licenses
- used_hashes = submodule_licenses.values.reject { |v| v.nil? || LICENSE_WHITELIST.include?(v) }
- unused_hashes = HASH_WHITELIST - used_hashes
- message = "The following whitelisted license hashes are unused:\n* #{unused_hashes.join("\n* ")}\n"
- message << "Please remove them from the hash whitelist"
- assert_equal Array.new, unused_hashes, message
- end
-
- def test_submodules_whitelist_has_no_extra_entries
- skip("Need to work out how to handle dual-licensed entities")
- extra_whitelist_entries = PROJECT_WHITELIST - submodule_licenses.select { |k,v| v.nil? }.keys
- not_present = extra_whitelist_entries.reject { |k,v| Dir.exist?(k) }
- licensed = extra_whitelist_entries.select { |k,v| submodule_licenses[k] }
-
- msg = "The following whitelisted submodules don't appear to be part of the project:\n* #{not_present.join("\n* ")}"
- assert_equal [], not_present, msg
-
- msg = "The following whitelisted submodules actually have licenses and don't need to be whitelisted:\n* #{licensed.join("\n* ")}"
- assert_equal [], licensed, msg
- end
-
def test_submodules_use_https_links
File.open(".gitmodules", "r") do |fh|
ssh_submodules = []
@@ -162,35 +62,4 @@ def submodule_paths
@submodule_paths ||= `git config --list --file "#{File.join(ROOT, ".gitmodules")}"`.lines.grep(/\.path=/).map { |line| line.chomp.split("=", 2).last }.reject { |path| path =~ /CodeMirror/ }
end
- # Returns a hash of submodules in the form of submodule_path => license
- def submodule_licenses
- @@submodule_licenses ||= begin
- submodules = {}
- submodule_paths.each { |submodule| submodules[submodule] = submodule_license(submodule) }
- submodules
- end
- end
-
- # Given the path to a submodule, return its SPDX-compliant license key
- # If the license is unrecognized, return its hash
- def submodule_license(submodule)
- # Prefer Licensee to detect a submodule's license
- project = Licensee.project(submodule, detect_packages: true, detect_readme: true)
- return project.license.key if project.licenses.length == 1 && !project.license.pseudo_license?
-
- # If we have more than one license, return the first one that isn't a
- # pseudo-license (other or no-license), if any
- if project.licenses.length > 1
- first_real_license = project.licenses.reject{ |f| f.pseudo_license? }.first
- return first_real_license.key unless first_real_license.nil?
- end
-
- # We know a license exists, but no method was able to recognize it.
- # We return the license hash in this case, to uniquely identify it.
- if project.license_file
- return project.license_file.content_hash
- elsif project.readme
- return project.readme.content_hash
- end
- end
end
diff --git a/vendor/licenses/config.yml b/vendor/licenses/config.yml
index 18f581474c..66b9b5f876 100644
--- a/vendor/licenses/config.yml
+++ b/vendor/licenses/config.yml
@@ -23,7 +23,9 @@ reviewed:
rubygem:
- mime-types
grammar:
- - Sublime-Lasso
+ - blitzmax # No license file. License in README
+ - creole # License filename is not LICENSE(.*) but rather "The MIT License (MIT)"
+ - Sublime-Lasso # No license file. License in README
sources:
npm: false
diff --git a/vendor/licenses/grammar/ABNF.tmbundle.txt b/vendor/licenses/grammar/ABNF.tmbundle.txt
index 2656e68eb2..02ea4ff02b 100644
--- a/vendor/licenses/grammar/ABNF.tmbundle.txt
+++ b/vendor/licenses/grammar/ABNF.tmbundle.txt
@@ -1,6 +1,7 @@
---
type: grammar
name: ABNF.tmbundle
+version: 0042b3d7ee21b2f800a8f80d42761513f16d9a52
license: apache-2.0
---
Apache License
@@ -203,4 +204,4 @@ license: apache-2.0
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
- limitations under the License.
+ limitations under the License.
\ No newline at end of file
diff --git a/vendor/licenses/grammar/Agda.tmbundle.txt b/vendor/licenses/grammar/Agda.tmbundle.txt
index fe54054532..1f91ecd4b2 100644
--- a/vendor/licenses/grammar/Agda.tmbundle.txt
+++ b/vendor/licenses/grammar/Agda.tmbundle.txt
@@ -1,6 +1,7 @@
---
type: grammar
name: Agda.tmbundle
+version: 0ac22a3c6b231e620c7fa5bd8e83808d33c052ec
license: bsd-3-clause
---
Copyright (c) 2014 James Cook
@@ -31,4 +32,4 @@ OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
-POSSIBILITY OF SUCH DAMAGE.
+POSSIBILITY OF SUCH DAMAGE.
\ No newline at end of file
diff --git a/vendor/licenses/grammar/Alloy.tmbundle.txt b/vendor/licenses/grammar/Alloy.tmbundle.txt
index 06b7e0f91d..61c2be0bc2 100644
--- a/vendor/licenses/grammar/Alloy.tmbundle.txt
+++ b/vendor/licenses/grammar/Alloy.tmbundle.txt
@@ -1,6 +1,7 @@
---
type: grammar
name: Alloy.tmbundle
+version: 0a1e9445864e74b3e93f3a383e1fe93ee6dcfb78
license: apache-2.0
---
Apache License
@@ -203,4 +204,4 @@ Apache License
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
- limitations under the License.
+ limitations under the License.
\ No newline at end of file
diff --git a/vendor/licenses/grammar/Assembly-Syntax-Definition.txt b/vendor/licenses/grammar/Assembly-Syntax-Definition.txt
index 5faba7ef76..848fe755da 100644
--- a/vendor/licenses/grammar/Assembly-Syntax-Definition.txt
+++ b/vendor/licenses/grammar/Assembly-Syntax-Definition.txt
@@ -1,6 +1,7 @@
---
type: grammar
name: Assembly-Syntax-Definition
+version: 3d82aa7847b04d39a8f6a6e2fcc8e7c702265b76
license: mit
---
The MIT License (MIT)
@@ -23,4 +24,4 @@ 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.
+SOFTWARE.
\ No newline at end of file
diff --git a/vendor/licenses/grammar/AutoHotkey.txt b/vendor/licenses/grammar/AutoHotkey.txt
index ffd2c1dd12..550835bdcc 100644
--- a/vendor/licenses/grammar/AutoHotkey.txt
+++ b/vendor/licenses/grammar/AutoHotkey.txt
@@ -1,6 +1,7 @@
---
type: grammar
name: AutoHotkey
+version: dc20ea3b615d902fc43045c1073353af5f9e0edf
license: unlicense
---
This is free and unencumbered software released into the public domain.
@@ -26,4 +27,4 @@ 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.
-For more information, please refer to
+For more information, please refer to
\ No newline at end of file
diff --git a/vendor/licenses/grammar/BrightScript.tmbundle.txt b/vendor/licenses/grammar/BrightScript.tmbundle.txt
index 54d0f1b8b8..2c855b24c9 100644
--- a/vendor/licenses/grammar/BrightScript.tmbundle.txt
+++ b/vendor/licenses/grammar/BrightScript.tmbundle.txt
@@ -1,6 +1,7 @@
---
type: grammar
name: BrightScript.tmbundle
+version: 905791b02bfc7256604bbc874f8c259713d62b12
license: mit
---
The MIT License (MIT)
@@ -23,4 +24,4 @@ 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.
+SOFTWARE.
\ No newline at end of file
diff --git a/vendor/licenses/grammar/ColdFusion.txt b/vendor/licenses/grammar/ColdFusion.txt
index c51c96d9de..70c50c028f 100644
--- a/vendor/licenses/grammar/ColdFusion.txt
+++ b/vendor/licenses/grammar/ColdFusion.txt
@@ -1,6 +1,7 @@
---
type: grammar
name: ColdFusion
+version: dbe2f76038fe77fe90b4cc4a0651aa817f14f1a3
license: mit
---
The MIT License (MIT)
@@ -23,4 +24,4 @@ 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.
+THE SOFTWARE.
\ No newline at end of file
diff --git a/vendor/licenses/grammar/Docker.tmbundle.txt b/vendor/licenses/grammar/Docker.tmbundle.txt
index 3e4baf7c53..665bc0b710 100644
--- a/vendor/licenses/grammar/Docker.tmbundle.txt
+++ b/vendor/licenses/grammar/Docker.tmbundle.txt
@@ -1,6 +1,7 @@
---
type: grammar
name: Docker.tmbundle
+version: 6e521ead6cd39013b8d8b95d6d2e2c9e5a548464
license: mit
---
The MIT License (MIT)
@@ -23,4 +24,4 @@ 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.
+THE SOFTWARE.
\ No newline at end of file
diff --git a/vendor/licenses/grammar/EBNF.tmbundle.txt b/vendor/licenses/grammar/EBNF.tmbundle.txt
index d8a1387e9e..4c67453287 100644
--- a/vendor/licenses/grammar/EBNF.tmbundle.txt
+++ b/vendor/licenses/grammar/EBNF.tmbundle.txt
@@ -1,6 +1,7 @@
---
type: grammar
name: EBNF.tmbundle
+version: 13efe9156b74c97c0d6b3d1fa46d4ad839fa80e5
license: mit
---
Copyright (C) 2012 by Arne Schroppe
@@ -21,4 +22,4 @@ 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.
+THE SOFTWARE.
\ No newline at end of file
diff --git a/vendor/licenses/grammar/Elm.txt b/vendor/licenses/grammar/Elm.txt
index 7f04b9332a..71688746d9 100644
--- a/vendor/licenses/grammar/Elm.txt
+++ b/vendor/licenses/grammar/Elm.txt
@@ -1,6 +1,7 @@
---
type: grammar
name: Elm
+version: 6bbbca9ccd0bd3131575217b3780fa59d059fcba
license: mit
---
The MIT License (MIT)
@@ -22,4 +23,4 @@ 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.
+CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
\ No newline at end of file
diff --git a/vendor/licenses/grammar/FreeMarker.tmbundle.txt b/vendor/licenses/grammar/FreeMarker.tmbundle.txt
index 80411a4b1f..dcd240ca22 100644
--- a/vendor/licenses/grammar/FreeMarker.tmbundle.txt
+++ b/vendor/licenses/grammar/FreeMarker.tmbundle.txt
@@ -1,6 +1,7 @@
---
type: grammar
name: FreeMarker.tmbundle
+version: 7259485a01310af4bf63ba4ff37cbba3724ae77f
license: mit
---
Open Source Initiative OSI - The MIT License
diff --git a/vendor/licenses/grammar/G-Code.txt b/vendor/licenses/grammar/G-Code.txt
index 27b002f5e8..3e67edc90f 100644
--- a/vendor/licenses/grammar/G-Code.txt
+++ b/vendor/licenses/grammar/G-Code.txt
@@ -1,6 +1,7 @@
---
type: grammar
name: G-Code
+version: d91ec9820bb192ea34d081d76b76ecd7c2a50a9d
license: mit
---
The MIT License (MIT)
diff --git a/vendor/licenses/grammar/Handlebars.txt b/vendor/licenses/grammar/Handlebars.txt
index fa590e2ef9..c260bcb53c 100644
--- a/vendor/licenses/grammar/Handlebars.txt
+++ b/vendor/licenses/grammar/Handlebars.txt
@@ -1,6 +1,7 @@
---
type: grammar
name: Handlebars
+version: fa350d393dc04cf67e238258be154625f7388bc6
license: mit
---
The MIT License (MIT)
@@ -21,4 +22,4 @@ 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.
+THE SOFTWARE.
\ No newline at end of file
diff --git a/vendor/licenses/grammar/IDL-Syntax.txt b/vendor/licenses/grammar/IDL-Syntax.txt
index ca715fc80e..cf20be9b10 100644
--- a/vendor/licenses/grammar/IDL-Syntax.txt
+++ b/vendor/licenses/grammar/IDL-Syntax.txt
@@ -1,6 +1,7 @@
---
type: grammar
name: IDL-Syntax
+version: d8d12b4f5a8fb341e14add1927df19e261b9b666
license: mit
---
The MIT License (MIT)
@@ -23,4 +24,4 @@ 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.
+SOFTWARE.
\ No newline at end of file
diff --git a/vendor/licenses/grammar/Isabelle.tmbundle.txt b/vendor/licenses/grammar/Isabelle.tmbundle.txt
index 01f079184c..5ba9f64ee7 100644
--- a/vendor/licenses/grammar/Isabelle.tmbundle.txt
+++ b/vendor/licenses/grammar/Isabelle.tmbundle.txt
@@ -1,6 +1,7 @@
---
type: grammar
name: Isabelle.tmbundle
+version: 0023a4b950e7059cdb200314e7c5dbf4ea3a33ed
license: bsd-2-clause
---
Copyright (c) 2014 Gerwin Klein and contributors.
@@ -27,5 +28,4 @@ OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
-SUCH DAMAGE.
-
+SUCH DAMAGE.
\ No newline at end of file
diff --git a/vendor/licenses/grammar/JSyntax.txt b/vendor/licenses/grammar/JSyntax.txt
index bb1d16e7d8..9474a66d33 100644
--- a/vendor/licenses/grammar/JSyntax.txt
+++ b/vendor/licenses/grammar/JSyntax.txt
@@ -1,6 +1,7 @@
---
type: grammar
name: JSyntax
+version: 0bc2491bf102c6ac82c5e0aaa3877e1be0977f9a
license: mit
---
The MIT License (MIT)
diff --git a/vendor/licenses/grammar/Lean.tmbundle.txt b/vendor/licenses/grammar/Lean.tmbundle.txt
index e0dcb9906e..9fb48a250a 100644
--- a/vendor/licenses/grammar/Lean.tmbundle.txt
+++ b/vendor/licenses/grammar/Lean.tmbundle.txt
@@ -1,6 +1,7 @@
---
type: grammar
name: Lean.tmbundle
+version: e56b352bfc2bfc6b28154a8d7d68e469a454386b
license: apache-2.0
---
Apache License
@@ -203,4 +204,4 @@ Apache License
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
- limitations under the License.
+ limitations under the License.
\ No newline at end of file
diff --git a/vendor/licenses/grammar/LiveScript.tmbundle.txt b/vendor/licenses/grammar/LiveScript.tmbundle.txt
index 4afb414f3e..8c86d357c3 100644
--- a/vendor/licenses/grammar/LiveScript.tmbundle.txt
+++ b/vendor/licenses/grammar/LiveScript.tmbundle.txt
@@ -1,6 +1,7 @@
---
type: grammar
name: LiveScript.tmbundle
+version: c00cb4aa3be3df812f91587858c14b2f29fc73bf
license: mit
---
The MIT License (MIT)
@@ -23,4 +24,4 @@ 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.
+THE SOFTWARE.
\ No newline at end of file
diff --git a/vendor/licenses/grammar/MATLAB-Language-grammar.txt b/vendor/licenses/grammar/MATLAB-Language-grammar.txt
index bc1ae9a841..097d0ca8f8 100644
--- a/vendor/licenses/grammar/MATLAB-Language-grammar.txt
+++ b/vendor/licenses/grammar/MATLAB-Language-grammar.txt
@@ -1,6 +1,7 @@
---
type: grammar
name: MATLAB-Language-grammar
+version: ef1281a78f39a9b2edfa25b05d8190b018490dc3
license: bsd-2-clause
---
Copyright 2018 The MathWorks, Inc.
diff --git a/vendor/licenses/grammar/MQL5-sublime.txt b/vendor/licenses/grammar/MQL5-sublime.txt
index cea1bce812..883fb767d4 100644
--- a/vendor/licenses/grammar/MQL5-sublime.txt
+++ b/vendor/licenses/grammar/MQL5-sublime.txt
@@ -1,6 +1,7 @@
---
type: grammar
name: MQL5-sublime
+version: a41ed3b5e5af354d9faf262794549ea44bbe5912
license: mit
---
MIT License
@@ -23,4 +24,4 @@ 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.
+SOFTWARE.
\ No newline at end of file
diff --git a/vendor/licenses/grammar/MagicPython.txt b/vendor/licenses/grammar/MagicPython.txt
index 03cf7868e8..c81d338056 100644
--- a/vendor/licenses/grammar/MagicPython.txt
+++ b/vendor/licenses/grammar/MagicPython.txt
@@ -1,11 +1,12 @@
---
type: grammar
name: MagicPython
+version: fb56c6a98d684e30bed1b0f9647e85741a48f914
license: mit
---
The MIT License
-Copyright (c) 2015 MagicStack Inc. http://magic.io
+Copyright (c) 2015-present MagicStack Inc. http://magic.io
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
@@ -24,3 +25,7 @@ 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.
+
+--------------------------------------------------------------------------------
+Victor Petrovykh
+Yury Selivanov
\ No newline at end of file
diff --git a/vendor/licenses/grammar/Modelica.txt b/vendor/licenses/grammar/Modelica.txt
index 6460d1aa30..aac9e3bd85 100644
--- a/vendor/licenses/grammar/Modelica.txt
+++ b/vendor/licenses/grammar/Modelica.txt
@@ -1,6 +1,7 @@
---
type: grammar
name: Modelica
+version: c841b17b0f441451b43a0b0e62bc6201a3456b83
license: mit
---
The MIT License (MIT)
diff --git a/vendor/licenses/grammar/NSIS.txt b/vendor/licenses/grammar/NSIS.txt
index 428151f713..dc6e0f0781 100644
--- a/vendor/licenses/grammar/NSIS.txt
+++ b/vendor/licenses/grammar/NSIS.txt
@@ -1,6 +1,7 @@
---
type: grammar
name: NSIS
+version: 696d06cb2bd0dfc619c989c746e4b43eea689161
license: apache-2.0
---
Apache License
@@ -203,4 +204,4 @@ Apache License
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
- limitations under the License.
+ limitations under the License.
\ No newline at end of file
diff --git a/vendor/licenses/grammar/NimLime.txt b/vendor/licenses/grammar/NimLime.txt
index 2e433dd6ee..89f51b7e94 100644
--- a/vendor/licenses/grammar/NimLime.txt
+++ b/vendor/licenses/grammar/NimLime.txt
@@ -1,6 +1,7 @@
---
type: grammar
name: NimLime
+version: 4154fdc3907f13a1cb19e3c69289f3d947784066
license: mit
---
The MIT License (MIT)
@@ -22,4 +23,4 @@ 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.
+CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
\ No newline at end of file
diff --git a/vendor/licenses/grammar/PHP-Twig.tmbundle.txt b/vendor/licenses/grammar/PHP-Twig.tmbundle.txt
index 820bd1587a..5d582cdb56 100644
--- a/vendor/licenses/grammar/PHP-Twig.tmbundle.txt
+++ b/vendor/licenses/grammar/PHP-Twig.tmbundle.txt
@@ -1,6 +1,7 @@
---
type: grammar
name: PHP-Twig.tmbundle
+version: 4fe0a237dc534a2d94a468f0ab1319c09ae1b573
license: bsd-3-clause
---
Copyright (c) 2014, Andrew Fricke
@@ -28,4 +29,4 @@ DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
-OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
\ No newline at end of file
diff --git a/vendor/licenses/grammar/PogoScript.tmbundle.txt b/vendor/licenses/grammar/PogoScript.tmbundle.txt
index 266816cb2d..e40dd61e03 100644
--- a/vendor/licenses/grammar/PogoScript.tmbundle.txt
+++ b/vendor/licenses/grammar/PogoScript.tmbundle.txt
@@ -1,6 +1,7 @@
---
type: grammar
name: PogoScript.tmbundle
+version: 2255586f9ec69bab052b2250615db9b824774178
license: mit
---
The MIT License (MIT)
@@ -23,4 +24,4 @@ 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.
+THE SOFTWARE.
\ No newline at end of file
diff --git a/vendor/licenses/grammar/RDoc.tmbundle.txt b/vendor/licenses/grammar/RDoc.tmbundle.txt
index 8cefc45fac..047d7e0a92 100644
--- a/vendor/licenses/grammar/RDoc.tmbundle.txt
+++ b/vendor/licenses/grammar/RDoc.tmbundle.txt
@@ -1,6 +1,7 @@
---
type: grammar
name: RDoc.tmbundle
+version: 6a403e7e2fc8800133075e27fa55f30a7885c41a
license: mit
---
(The MIT License)
diff --git a/vendor/licenses/grammar/Racket.txt b/vendor/licenses/grammar/Racket.txt
index 49818d6422..1cb2b748c2 100644
--- a/vendor/licenses/grammar/Racket.txt
+++ b/vendor/licenses/grammar/Racket.txt
@@ -1,6 +1,7 @@
---
type: grammar
name: Racket
+version: '02739c25aefb484a031e58ff7a628adf4c97225f'
license: mit
---
The MIT License (MIT)
@@ -23,4 +24,4 @@ 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.
+SOFTWARE.
\ No newline at end of file
diff --git a/vendor/licenses/grammar/SCSS.tmbundle.txt b/vendor/licenses/grammar/SCSS.tmbundle.txt
index a22f166be7..d585d9ca15 100644
--- a/vendor/licenses/grammar/SCSS.tmbundle.txt
+++ b/vendor/licenses/grammar/SCSS.tmbundle.txt
@@ -1,8 +1,8 @@
---
type: grammar
name: SCSS.tmbundle
+version: 49a74571e7346b082016168fd702d41d1d319727
license: permissive
-curated: true
---
SCSS.tmbundle Copyright (c) 2012 Mario Ricalde
diff --git a/vendor/licenses/grammar/SMT.tmbundle.txt b/vendor/licenses/grammar/SMT.tmbundle.txt
index 5e47c2ead1..eedae0a226 100644
--- a/vendor/licenses/grammar/SMT.tmbundle.txt
+++ b/vendor/licenses/grammar/SMT.tmbundle.txt
@@ -1,6 +1,7 @@
---
type: grammar
name: SMT.tmbundle
+version: b72f1aef2c841ac2f9ff444e98a139011bd910b3
license: unlicense
---
This is free and unencumbered software released into the public domain.
@@ -26,5 +27,4 @@ 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.
-For more information, please refer to
-
+For more information, please refer to
\ No newline at end of file
diff --git a/vendor/licenses/grammar/Scalate.tmbundle.txt b/vendor/licenses/grammar/Scalate.tmbundle.txt
index 22da03eca3..2496a8228e 100644
--- a/vendor/licenses/grammar/Scalate.tmbundle.txt
+++ b/vendor/licenses/grammar/Scalate.tmbundle.txt
@@ -1,6 +1,7 @@
---
type: grammar
name: Scalate.tmbundle
+version: c753f3307d36accc9571f6a0b77e141da96fd2d8
license: apache-2.0
---
@@ -204,4 +205,4 @@ license: apache-2.0
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
- limitations under the License.
+ limitations under the License.
\ No newline at end of file
diff --git a/vendor/licenses/grammar/Slash.tmbundle.txt b/vendor/licenses/grammar/Slash.tmbundle.txt
index e15cf4030e..1e2b058c1a 100644
--- a/vendor/licenses/grammar/Slash.tmbundle.txt
+++ b/vendor/licenses/grammar/Slash.tmbundle.txt
@@ -1,6 +1,7 @@
---
type: grammar
name: Slash.tmbundle
+version: 48e678eb2797295190f0dfa324167d0006bcc4e3
license: mit
---
Copyright (C) 2014 Charlie Somerville
@@ -20,4 +21,4 @@ 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.
+CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
\ No newline at end of file
diff --git a/vendor/licenses/grammar/Stata.tmbundle.txt b/vendor/licenses/grammar/Stata.tmbundle.txt
index b669676a90..26a9abffd4 100644
--- a/vendor/licenses/grammar/Stata.tmbundle.txt
+++ b/vendor/licenses/grammar/Stata.tmbundle.txt
@@ -1,6 +1,7 @@
---
type: grammar
name: Stata.tmbundle
+version: 3ba6a949d6b9fd26ee707b5b2bccd571f9e9cf03
license: mit
---
The MIT License (MIT)
@@ -24,3 +25,10 @@ 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.
+
+--------------------------------------------------------------------------------
+Stata.tmbundle was written by:
+Ben Jann
+Tom Palmer
+Phil Schumm
+Michael Sheets
\ No newline at end of file
diff --git a/vendor/licenses/grammar/Stylus.txt b/vendor/licenses/grammar/Stylus.txt
index 456cbfb89e..16a7119c69 100644
--- a/vendor/licenses/grammar/Stylus.txt
+++ b/vendor/licenses/grammar/Stylus.txt
@@ -1,6 +1,7 @@
---
type: grammar
name: Stylus
+version: 30908e3b5757d6cab4bf2ce660ef89b0c614cf62
license: mit
---
Stylus Package for Sublime Text
@@ -28,4 +29,4 @@ 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.
+OTHER DEALINGS IN THE SOFTWARE.
\ No newline at end of file
diff --git a/vendor/licenses/grammar/Sublime-Coq.txt b/vendor/licenses/grammar/Sublime-Coq.txt
index 61b3d7282f..85c54b7a71 100644
--- a/vendor/licenses/grammar/Sublime-Coq.txt
+++ b/vendor/licenses/grammar/Sublime-Coq.txt
@@ -1,6 +1,7 @@
---
type: grammar
name: Sublime-Coq
+version: ea5057282e3a55f641585934511bc24f653ea767
license: mit
---
The MIT License (MIT)
@@ -23,4 +24,4 @@ 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.
+SOFTWARE.
\ No newline at end of file
diff --git a/vendor/licenses/grammar/Sublime-HTTP.txt b/vendor/licenses/grammar/Sublime-HTTP.txt
index 9c8195ecbf..f5c857dd88 100644
--- a/vendor/licenses/grammar/Sublime-HTTP.txt
+++ b/vendor/licenses/grammar/Sublime-HTTP.txt
@@ -1,6 +1,7 @@
---
type: grammar
name: Sublime-HTTP
+version: '0099998617eb784fa27d8a47e289058d9a6307ab'
license: mit
---
The MIT License (MIT)
@@ -23,4 +24,4 @@ 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.
+THE SOFTWARE.
\ No newline at end of file
diff --git a/vendor/licenses/grammar/Sublime-Lasso.txt b/vendor/licenses/grammar/Sublime-Lasso.txt
index b35955056e..bc4da210eb 100644
--- a/vendor/licenses/grammar/Sublime-Lasso.txt
+++ b/vendor/licenses/grammar/Sublime-Lasso.txt
@@ -1,8 +1,8 @@
---
type: grammar
name: Sublime-Lasso
+version: c755cf53bed8f81dcfbe937f9feaa9e564f1c2a9
license: public domain
-curated: true
---
License Information
diff --git a/vendor/licenses/grammar/Sublime-Loom.txt b/vendor/licenses/grammar/Sublime-Loom.txt
index 2852742223..88421f0100 100644
--- a/vendor/licenses/grammar/Sublime-Loom.txt
+++ b/vendor/licenses/grammar/Sublime-Loom.txt
@@ -1,6 +1,7 @@
---
type: grammar
name: Sublime-Loom
+version: 725228409c4cfcbf00216d677b85466b2303ef0b
license: mit
---
The MIT License (MIT)
@@ -22,4 +23,4 @@ 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.
+CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
\ No newline at end of file
diff --git a/vendor/licenses/grammar/Sublime-Modula-2.txt b/vendor/licenses/grammar/Sublime-Modula-2.txt
index 05dff6889e..55104dd20b 100644
--- a/vendor/licenses/grammar/Sublime-Modula-2.txt
+++ b/vendor/licenses/grammar/Sublime-Modula-2.txt
@@ -1,6 +1,7 @@
---
type: grammar
name: Sublime-Modula-2
+version: 309cea7babd447c5c1cc66bda85bc6d7ff730319
license: mit
---
The MIT License (MIT)
diff --git a/vendor/licenses/grammar/Sublime-Nit.txt b/vendor/licenses/grammar/Sublime-Nit.txt
index 92f08ff643..0f7cf7ff18 100644
--- a/vendor/licenses/grammar/Sublime-Nit.txt
+++ b/vendor/licenses/grammar/Sublime-Nit.txt
@@ -1,6 +1,7 @@
---
type: grammar
name: Sublime-Nit
+version: 12c1d654166cab044fbab2d1d7f481930ad7777c
license: wtfpl
---
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE
@@ -15,4 +16,4 @@ license: wtfpl
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE
TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
- 0. You just DO WHAT THE FUCK YOU WANT TO.
+ 0. You just DO WHAT THE FUCK YOU WANT TO.
\ No newline at end of file
diff --git a/vendor/licenses/grammar/Sublime-Pep8.txt b/vendor/licenses/grammar/Sublime-Pep8.txt
index a81695b7c4..d9346a5a8e 100644
--- a/vendor/licenses/grammar/Sublime-Pep8.txt
+++ b/vendor/licenses/grammar/Sublime-Pep8.txt
@@ -1,12 +1,13 @@
---
type: grammar
name: Sublime-Pep8
+version: be653c638b2b042c90384f5d3f335d93172bcd85
license: wtfpl
---
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE
Version 2, December 2004
- Copyright (C) 2004 Sam Hocevar
+ Copyright (C) 2017 Lucas Bajolet
Everyone is permitted to copy and distribute verbatim or modified
copies of this license document, and changing it is allowed as long
@@ -15,4 +16,4 @@ license: wtfpl
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE
TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
- 0. You just DO WHAT THE FUCK YOU WANT TO.
+ 0. You just DO WHAT THE FUCK YOU WANT TO.
\ No newline at end of file
diff --git a/vendor/licenses/grammar/Sublime-QML.txt b/vendor/licenses/grammar/Sublime-QML.txt
index df9170904d..60c9c310c8 100644
--- a/vendor/licenses/grammar/Sublime-QML.txt
+++ b/vendor/licenses/grammar/Sublime-QML.txt
@@ -1,6 +1,7 @@
---
type: grammar
name: Sublime-QML
+version: e3e058a21f3c44d64ef5eda93925ee84169b62ec
license: mit
---
The MIT License (MIT)
@@ -22,4 +23,4 @@ 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.
+CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
\ No newline at end of file
diff --git a/vendor/licenses/grammar/Sublime-REBOL.txt b/vendor/licenses/grammar/Sublime-REBOL.txt
index ad021239ab..e0a57cf58c 100644
--- a/vendor/licenses/grammar/Sublime-REBOL.txt
+++ b/vendor/licenses/grammar/Sublime-REBOL.txt
@@ -1,6 +1,7 @@
---
type: grammar
name: Sublime-REBOL
+version: 102402f71aa3a7770b0c06c0183eff1be78e7280
license: mit
---
Copyright (c) 2014-2015 Oldes
@@ -24,4 +25,4 @@ 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.
+OTHER DEALINGS IN THE SOFTWARE.
\ No newline at end of file
diff --git a/vendor/licenses/grammar/Sublime-Red.txt b/vendor/licenses/grammar/Sublime-Red.txt
index e74d11f2a6..fe6bd9150e 100644
--- a/vendor/licenses/grammar/Sublime-Red.txt
+++ b/vendor/licenses/grammar/Sublime-Red.txt
@@ -1,6 +1,7 @@
---
type: grammar
name: Sublime-Red
+version: def7baed855873ab6730502baf07ce014b922ad9
license: mit
---
Copyright (c) 2014-2015 Oldes
@@ -24,4 +25,4 @@ 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.
+OTHER DEALINGS IN THE SOFTWARE.
\ No newline at end of file
diff --git a/vendor/licenses/grammar/Sublime-SQF-Language.txt b/vendor/licenses/grammar/Sublime-SQF-Language.txt
index 28ad494366..d2dc6f7c96 100644
--- a/vendor/licenses/grammar/Sublime-SQF-Language.txt
+++ b/vendor/licenses/grammar/Sublime-SQF-Language.txt
@@ -1,6 +1,7 @@
---
type: grammar
name: Sublime-SQF-Language
+version: 2a2e9223a0731b9ca22642363a9f49d49aa75cd5
license: apache-2.0
---
Apache License
@@ -203,4 +204,4 @@ Apache License
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
- limitations under the License.
+ limitations under the License.
\ No newline at end of file
diff --git a/vendor/licenses/grammar/Sublime-Text-2-OpenEdge-ABL.txt b/vendor/licenses/grammar/Sublime-Text-2-OpenEdge-ABL.txt
index ca04341fef..0a68127178 100644
--- a/vendor/licenses/grammar/Sublime-Text-2-OpenEdge-ABL.txt
+++ b/vendor/licenses/grammar/Sublime-Text-2-OpenEdge-ABL.txt
@@ -1,6 +1,7 @@
---
type: grammar
name: Sublime-Text-2-OpenEdge-ABL
+version: 04e4d1405c405a7fe1c949bf1e1a9f11f393a820
license: mit
---
The MIT License (MIT)
@@ -24,4 +25,4 @@ 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.
+THE SOFTWARE.
\ No newline at end of file
diff --git a/vendor/licenses/grammar/SublimeBrainfuck.txt b/vendor/licenses/grammar/SublimeBrainfuck.txt
index df8647800b..9e22c76bea 100644
--- a/vendor/licenses/grammar/SublimeBrainfuck.txt
+++ b/vendor/licenses/grammar/SublimeBrainfuck.txt
@@ -1,14 +1,27 @@
---
type: grammar
name: SublimeBrainfuck
+version: 4c5329b78d78a16c780dcc3f15c9d2953a99c80f
license: mit
---
-All of SublimeBrainfuck is licensed under the MIT license.
+MIT License
Copyright (c) 2013 Felix Bytow
-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:
+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 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
+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/vendor/licenses/grammar/SublimeClarion.txt b/vendor/licenses/grammar/SublimeClarion.txt
index 4446730122..580d29f013 100644
--- a/vendor/licenses/grammar/SublimeClarion.txt
+++ b/vendor/licenses/grammar/SublimeClarion.txt
@@ -1,6 +1,7 @@
---
type: grammar
name: SublimeClarion
+version: f6fa5e008cf8a120800b32797f052bd6b688c55b
license: mit
---
The MIT License (MIT)
diff --git a/vendor/licenses/grammar/SublimeEthereum.txt b/vendor/licenses/grammar/SublimeEthereum.txt
index da684d5517..c90e3c3c99 100644
--- a/vendor/licenses/grammar/SublimeEthereum.txt
+++ b/vendor/licenses/grammar/SublimeEthereum.txt
@@ -1,8 +1,11 @@
---
type: grammar
name: SublimeEthereum
+version: dc43f7471fa3395d3d62b137a3e5416e09f48573
license: mit
---
+MIT License
+
Copyright (c) 2015+ uniqpath
Permission is hereby granted, free of charge, to any person obtaining a copy
@@ -12,13 +15,13 @@ 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 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..
+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/vendor/licenses/grammar/SublimeGDB.txt b/vendor/licenses/grammar/SublimeGDB.txt
index 3140ffb09d..1c3d89a9b5 100644
--- a/vendor/licenses/grammar/SublimeGDB.txt
+++ b/vendor/licenses/grammar/SublimeGDB.txt
@@ -1,6 +1,7 @@
---
type: grammar
name: SublimeGDB
+version: 2c65943cfd6ccefd745a13616c3b29860d84f2d9
license: zlib
---
Copyright (c) 2012 Fredrik Ehnbom
@@ -13,13 +14,10 @@ Permission is granted to anyone to use this software for any purpose,
including commercial applications, and to alter it and redistribute it
freely, subject to the following restrictions:
- 1. The origin of this software must not be misrepresented; you must not
+1. The origin of this software must not be misrepresented; you must not
claim that you wrote the original software. If you use this software
- in a product, an acknowledgment in the product documentation would be
+ in a product, an acknowledgement in the product documentation would be
appreciated but is not required.
-
- 2. Altered source versions must be plainly marked as such, and must not be
+2. Altered source versions must be plainly marked as such, and must not be
misrepresented as being the original software.
-
- 3. This notice may not be removed or altered from any source
- distribution.
+3. This notice may not be removed or altered from any source distribution.
\ No newline at end of file
diff --git a/vendor/licenses/grammar/SublimePapyrus.txt b/vendor/licenses/grammar/SublimePapyrus.txt
index cf1524b0c2..f959878b27 100644
--- a/vendor/licenses/grammar/SublimePapyrus.txt
+++ b/vendor/licenses/grammar/SublimePapyrus.txt
@@ -1,6 +1,7 @@
---
type: grammar
name: SublimePapyrus
+version: 6dc86d921a20573fb1be6f076a0022d4d28629e4
license: mit
---
The MIT License (MIT)
@@ -23,4 +24,4 @@ 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.
+SOFTWARE.
\ No newline at end of file
diff --git a/vendor/licenses/grammar/SublimePuppet.txt b/vendor/licenses/grammar/SublimePuppet.txt
index efe82f9634..f50c058393 100644
--- a/vendor/licenses/grammar/SublimePuppet.txt
+++ b/vendor/licenses/grammar/SublimePuppet.txt
@@ -1,6 +1,7 @@
---
type: grammar
name: SublimePuppet
+version: 97484d7f9b1084fb0ea392ad6a2ce886f176a242
license: mit
---
The MIT License (MIT)
@@ -24,3 +25,9 @@ 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.
+
+--------------------------------------------------------------------------------
+Russell Cloak
+Sean Keery
+Ruy Asan
+Peter Souter
\ No newline at end of file
diff --git a/vendor/licenses/grammar/SublimeXtend.txt b/vendor/licenses/grammar/SublimeXtend.txt
index ad89f207d3..d26647de7d 100644
--- a/vendor/licenses/grammar/SublimeXtend.txt
+++ b/vendor/licenses/grammar/SublimeXtend.txt
@@ -1,6 +1,7 @@
---
type: grammar
name: SublimeXtend
+version: 61c06e16645078c3238a23548911c8cd147e4b69
license: mit
---
The MIT License (MIT)
diff --git a/vendor/licenses/grammar/Syntax-highlighting-for-PostCSS.txt b/vendor/licenses/grammar/Syntax-highlighting-for-PostCSS.txt
index 90e5351430..157d72fc5b 100644
--- a/vendor/licenses/grammar/Syntax-highlighting-for-PostCSS.txt
+++ b/vendor/licenses/grammar/Syntax-highlighting-for-PostCSS.txt
@@ -1,6 +1,7 @@
---
type: grammar
name: Syntax-highlighting-for-PostCSS
+version: 575b918985ce82545a12615a244243e41a91cd52
license: mit
---
The MIT License (MIT)
@@ -22,4 +23,4 @@ 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.
+CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
\ No newline at end of file
diff --git a/vendor/licenses/grammar/TLA.txt b/vendor/licenses/grammar/TLA.txt
index 882d33bc4a..890e36b464 100644
--- a/vendor/licenses/grammar/TLA.txt
+++ b/vendor/licenses/grammar/TLA.txt
@@ -1,11 +1,12 @@
---
type: grammar
name: TLA
+version: a67cbd03099df412db00cae78d23c836b79ebc2b
license: mit
---
The MIT License (MIT)
-Copyright (c) 2013 Microsoft and HP
+Copyright (c) 2016 J Kenneth King
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
@@ -23,4 +24,4 @@ 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.
+SOFTWARE.
\ No newline at end of file
diff --git a/vendor/licenses/grammar/TXL.txt b/vendor/licenses/grammar/TXL.txt
index 797de643b0..51c5c9fde0 100644
--- a/vendor/licenses/grammar/TXL.txt
+++ b/vendor/licenses/grammar/TXL.txt
@@ -1,6 +1,7 @@
---
type: grammar
name: TXL
+version: 17b2543e31b7befcbbb4a06d308763e4348903eb
license: apache-2.0
---
Apache License
@@ -203,5 +204,4 @@ Apache License
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
- limitations under the License.
-
+ limitations under the License.
\ No newline at end of file
diff --git a/vendor/licenses/grammar/Terraform.tmLanguage.txt b/vendor/licenses/grammar/Terraform.tmLanguage.txt
index ec7baf8b0d..190ab3c0fb 100644
--- a/vendor/licenses/grammar/Terraform.tmLanguage.txt
+++ b/vendor/licenses/grammar/Terraform.tmLanguage.txt
@@ -1,6 +1,7 @@
---
type: grammar
name: Terraform.tmLanguage
+version: 3ee22be9b5ca7f669e95400414b41fb93f44e9ae
license: mit
---
MIT License
diff --git a/vendor/licenses/grammar/Textmate-Gosu-Bundle.txt b/vendor/licenses/grammar/Textmate-Gosu-Bundle.txt
index 2d6f787c22..5464f8e491 100644
--- a/vendor/licenses/grammar/Textmate-Gosu-Bundle.txt
+++ b/vendor/licenses/grammar/Textmate-Gosu-Bundle.txt
@@ -1,6 +1,7 @@
---
type: grammar
name: Textmate-Gosu-Bundle
+version: e31beef57a24189b7225b53c02941b2bf24b9ed1
license: apache-2.0
---
Apache License
@@ -203,4 +204,4 @@ Apache License
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
- limitations under the License.
+ limitations under the License.
\ No newline at end of file
diff --git a/vendor/licenses/grammar/TypeScript-TmLanguage.txt b/vendor/licenses/grammar/TypeScript-TmLanguage.txt
index 9df3184a74..86979e1cde 100644
--- a/vendor/licenses/grammar/TypeScript-TmLanguage.txt
+++ b/vendor/licenses/grammar/TypeScript-TmLanguage.txt
@@ -1,11 +1,9 @@
---
type: grammar
name: TypeScript-TmLanguage
+version: 858d33f03943e4ec040e81cbabbc3f7892157c18
license: mit
---
-
-TypeScript Grammar
-
Copyright (c) Microsoft Corporation
All rights reserved.
@@ -27,4 +25,4 @@ 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.
+THE SOFTWARE.
\ No newline at end of file
diff --git a/vendor/licenses/grammar/UrWeb-Language-Definition.txt b/vendor/licenses/grammar/UrWeb-Language-Definition.txt
index 2f8fd5d22e..e512e69a86 100644
--- a/vendor/licenses/grammar/UrWeb-Language-Definition.txt
+++ b/vendor/licenses/grammar/UrWeb-Language-Definition.txt
@@ -1,6 +1,7 @@
---
type: grammar
name: UrWeb-Language-Definition
+version: cd47cc78918244b9cc36f57f5397a97a5affce4e
license: mit
---
The MIT License (MIT)
@@ -23,4 +24,4 @@ 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.
+THE SOFTWARE.
\ No newline at end of file
diff --git a/vendor/licenses/grammar/VBDotNetSyntax.txt b/vendor/licenses/grammar/VBDotNetSyntax.txt
index b73b554cad..d49cd5f68f 100644
--- a/vendor/licenses/grammar/VBDotNetSyntax.txt
+++ b/vendor/licenses/grammar/VBDotNetSyntax.txt
@@ -1,6 +1,7 @@
---
type: grammar
name: VBDotNetSyntax
+version: 3c9329a4ba3396617a03db0644357c5bff42c542
license: apache-2.0
---
Apache License
@@ -203,4 +204,4 @@ Apache License
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
- limitations under the License.
+ limitations under the License.
\ No newline at end of file
diff --git a/vendor/licenses/grammar/Vala-TMBundle.txt b/vendor/licenses/grammar/Vala-TMBundle.txt
index 264b0f77dc..83548b6d27 100644
--- a/vendor/licenses/grammar/Vala-TMBundle.txt
+++ b/vendor/licenses/grammar/Vala-TMBundle.txt
@@ -1,6 +1,7 @@
---
type: grammar
name: Vala-TMBundle
+version: 1c5ebb62d11e01d145b414355de72d4de8758ed8
license: mit
---
Copyright (C) 2014 Matt Butcher
@@ -21,4 +22,4 @@ 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.
+THE SOFTWARE.
\ No newline at end of file
diff --git a/vendor/licenses/grammar/X10.txt b/vendor/licenses/grammar/X10.txt
index 021e16a263..1f6c1df085 100644
--- a/vendor/licenses/grammar/X10.txt
+++ b/vendor/licenses/grammar/X10.txt
@@ -1,6 +1,7 @@
---
type: grammar
name: X10
+version: 2bae6e77fabcdceff753823477390c37305ca76c
license: apache-2.0
---
Apache License
@@ -206,4 +207,4 @@ license: apache-2.0
limitations under the License.
-(C) Copyright IBM Corporation 2006-2015.
+(C) Copyright IBM Corporation 2006-2015.
\ No newline at end of file
diff --git a/vendor/licenses/grammar/abap.tmbundle.txt b/vendor/licenses/grammar/abap.tmbundle.txt
index 2af34de486..350def6338 100644
--- a/vendor/licenses/grammar/abap.tmbundle.txt
+++ b/vendor/licenses/grammar/abap.tmbundle.txt
@@ -1,8 +1,8 @@
---
type: grammar
name: abap.tmbundle
+version: e4e71dee51b1fe6973e11d6a617de72991be4ecb
license: permissive
-curated: true
---
If not otherwise specified (see below), files in this repository fall under the following license:
@@ -11,4 +11,4 @@ If not otherwise specified (see below), files in this repository fall under the
express or implied warranty, and with no claim as to its
suitability for any purpose.
-An exception is made for files in readable text which contain their own license information, or files where an accompanying file exists (in the same directory) with a “-license” suffix added to the base-name name of the original file, and an extension of txt, html, or similar. For example “tidy” is accompanied by “tidy-license.txt”.
+An exception is made for files in readable text which contain their own license information, or files where an accompanying file exists (in the same directory) with a “-license” suffix added to the base-name name of the original file, and an extension of txt, html, or similar. For example “tidy” is accompanied by “tidy-license.txt”.
\ No newline at end of file
diff --git a/vendor/licenses/grammar/actionscript3-tmbundle.txt b/vendor/licenses/grammar/actionscript3-tmbundle.txt
index 00dff522be..6263b380bb 100644
--- a/vendor/licenses/grammar/actionscript3-tmbundle.txt
+++ b/vendor/licenses/grammar/actionscript3-tmbundle.txt
@@ -1,9 +1,10 @@
---
type: grammar
name: actionscript3-tmbundle
+version: 5f6240373a03639953cc5f8ddd63ee999226ab3b
license: mit
-curated: true
---
+The MIT License (MIT)
Copyright 2007-2010 Simon Gregory
@@ -23,4 +24,4 @@ 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.
+THE SOFTWARE.
\ No newline at end of file
diff --git a/vendor/licenses/grammar/ada.tmbundle.txt b/vendor/licenses/grammar/ada.tmbundle.txt
index 9102edc14e..e2c210d702 100644
--- a/vendor/licenses/grammar/ada.tmbundle.txt
+++ b/vendor/licenses/grammar/ada.tmbundle.txt
@@ -1,10 +1,9 @@
---
type: grammar
name: ada.tmbundle
+version: 59bfc50221b2dcdbdb8a98117f44e66e1c35ffcf
license: permissive
-curated: true
---
-
If not otherwise specified (see below), files in this repository fall under the following license:
Permission to copy, use, modify, sell and distribute this
@@ -12,4 +11,4 @@ If not otherwise specified (see below), files in this repository fall under the
express or implied warranty, and with no claim as to its
suitability for any purpose.
-An exception is made for files in readable text which contain their own license information, or files where an accompanying file exists (in the same directory) with a “-license” suffix added to the base-name name of the original file, and an extension of txt, html, or similar. For example “tidy” is accompanied by “tidy-license.txt”.
+An exception is made for files in readable text which contain their own license information, or files where an accompanying file exists (in the same directory) with a “-license” suffix added to the base-name name of the original file, and an extension of txt, html, or similar. For example “tidy” is accompanied by “tidy-license.txt”.
\ No newline at end of file
diff --git a/vendor/licenses/grammar/ampl.txt b/vendor/licenses/grammar/ampl.txt
index 7ac30bb3a4..613b6f19d3 100644
--- a/vendor/licenses/grammar/ampl.txt
+++ b/vendor/licenses/grammar/ampl.txt
@@ -1,6 +1,7 @@
---
type: grammar
name: ampl
+version: 2e399ebf4aec6b5b81f01d4cbee965f77852ce86
license: mit
---
The MIT License (MIT)
@@ -22,4 +23,4 @@ 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.
+CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
\ No newline at end of file
diff --git a/vendor/licenses/grammar/ant.tmbundle.txt b/vendor/licenses/grammar/ant.tmbundle.txt
index 1191d7cbb3..5b54b5aad2 100644
--- a/vendor/licenses/grammar/ant.tmbundle.txt
+++ b/vendor/licenses/grammar/ant.tmbundle.txt
@@ -1,9 +1,10 @@
---
type: grammar
name: ant.tmbundle
+version: 156b6945262da1c53c1d83a411dbac126f06195d
license: mit
-curated: true
---
+If not otherwise specified (see below), files in this project fall under the following license:
Copyright 2009-2010 Simon Gregory
@@ -24,3 +25,18 @@ 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.
+ THE SOFTWARE.
+
+An exception is made for files in readable text which contain their own license information, or files where an accompanying file exists (in the same directory) with a “-license” suffix added to the base-name name of the original file, and an extension of txt, html, or similar.
+
+[ant_bundle_zip]: http://github.com/textmate/ant.tmbundle/zipball/master
+[ant_download]: http://ant.apache.org/bindownload.cgi
+[ant_style_guide]: http://wiki.apache.org/ant/TheElementsOfAntStyle
+[ant_wiki]: http://wiki.apache.org/ant/FrontPage
+[apache_ant]: http://ant.apache.org/
+[issue_tracker]: http://github.com/textmate/ant.tmbundle/issues
+[repo]: http://github.com/textmate/ant.tmbundle/
+[sg_blog]: http://blog.simonregory.com
+[tm_conventions]: http://svn.textmate.org/trunk/Conventions.txt
+[tm_mailing_list]: http://lists.macromates.com/listinfo/textmate
+[tm_env_vars]: http://manual.macromates.com/en/environment_variables
\ No newline at end of file
diff --git a/vendor/licenses/grammar/antlr.tmbundle.txt b/vendor/licenses/grammar/antlr.tmbundle.txt
index a6134c6636..29ee61d8a6 100644
--- a/vendor/licenses/grammar/antlr.tmbundle.txt
+++ b/vendor/licenses/grammar/antlr.tmbundle.txt
@@ -1,10 +1,9 @@
---
type: grammar
name: antlr.tmbundle
+version: 7f07385abbdbd716ebb5b15ad8190347554192cf
license: permissive
-curated: true
---
-
If not otherwise specified (see below), files in this repository fall under the following license:
Permission to copy, use, modify, sell and distribute this
@@ -12,4 +11,4 @@ If not otherwise specified (see below), files in this repository fall under the
express or implied warranty, and with no claim as to its
suitability for any purpose.
-An exception is made for files in readable text which contain their own license information, or files where an accompanying file exists (in the same directory) with a “-license” suffix added to the base-name name of the original file, and an extension of txt, html, or similar. For example “tidy” is accompanied by “tidy-license.txt”.
+An exception is made for files in readable text which contain their own license information, or files where an accompanying file exists (in the same directory) with a “-license” suffix added to the base-name name of the original file, and an extension of txt, html, or similar. For example “tidy” is accompanied by “tidy-license.txt”.
\ No newline at end of file
diff --git a/vendor/licenses/grammar/apache.tmbundle.txt b/vendor/licenses/grammar/apache.tmbundle.txt
index 691a815117..96eda9de80 100644
--- a/vendor/licenses/grammar/apache.tmbundle.txt
+++ b/vendor/licenses/grammar/apache.tmbundle.txt
@@ -1,10 +1,9 @@
---
type: grammar
name: apache.tmbundle
+version: a12e895533700b0200cca20f169be63727efff8c
license: permissive
-curated: true
---
-
If not otherwise specified (see below), files in this repository fall under the following license:
Permission to copy, use, modify, sell and distribute this
@@ -12,4 +11,4 @@ If not otherwise specified (see below), files in this repository fall under the
express or implied warranty, and with no claim as to its
suitability for any purpose.
-An exception is made for files in readable text which contain their own license information, or files where an accompanying file exists (in the same directory) with a “-license” suffix added to the base-name name of the original file, and an extension of txt, html, or similar. For example “tidy” is accompanied by “tidy-license.txt”.
+An exception is made for files in readable text which contain their own license information, or files where an accompanying file exists (in the same directory) with a “-license” suffix added to the base-name name of the original file, and an extension of txt, html, or similar. For example “tidy” is accompanied by “tidy-license.txt”.
\ No newline at end of file
diff --git a/vendor/licenses/grammar/api-blueprint-sublime-plugin.txt b/vendor/licenses/grammar/api-blueprint-sublime-plugin.txt
index bf393b009e..bcd7965b1d 100644
--- a/vendor/licenses/grammar/api-blueprint-sublime-plugin.txt
+++ b/vendor/licenses/grammar/api-blueprint-sublime-plugin.txt
@@ -1,6 +1,7 @@
---
type: grammar
name: api-blueprint-sublime-plugin
+version: 4ee13a838525367a38aa216c8830acc4de4dcfad
license: mit
---
(The MIT License)
diff --git a/vendor/licenses/grammar/applescript.tmbundle.txt b/vendor/licenses/grammar/applescript.tmbundle.txt
index 18fe98a9b8..f36124986a 100644
--- a/vendor/licenses/grammar/applescript.tmbundle.txt
+++ b/vendor/licenses/grammar/applescript.tmbundle.txt
@@ -1,10 +1,9 @@
---
type: grammar
name: applescript.tmbundle
+version: df46dd96d877c5d2aadef4267c950e92a35425fa
license: permissive
-curated: true
---
-
If not otherwise specified (see below), files in this repository fall under the following license:
Permission to copy, use, modify, sell and distribute this
@@ -12,4 +11,4 @@ If not otherwise specified (see below), files in this repository fall under the
express or implied warranty, and with no claim as to its
suitability for any purpose.
-An exception is made for files in readable text which contain their own license information, or files where an accompanying file exists (in the same directory) with a “-license” suffix added to the base-name name of the original file, and an extension of txt, html, or similar. For example “tidy” is accompanied by “tidy-license.txt”.
+An exception is made for files in readable text which contain their own license information, or files where an accompanying file exists (in the same directory) with a “-license” suffix added to the base-name name of the original file, and an extension of txt, html, or similar. For example “tidy” is accompanied by “tidy-license.txt”.
\ No newline at end of file
diff --git a/vendor/licenses/grammar/asciidoc.tmbundle.txt b/vendor/licenses/grammar/asciidoc.tmbundle.txt
index e5866c8e84..21749eca3c 100644
--- a/vendor/licenses/grammar/asciidoc.tmbundle.txt
+++ b/vendor/licenses/grammar/asciidoc.tmbundle.txt
@@ -1,6 +1,7 @@
---
type: grammar
name: asciidoc.tmbundle
+version: af6d187b1e471a40bae047b1f92df0bdc734b786
license: mit
---
The MIT License (MIT)
@@ -23,5 +24,4 @@ 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.
-
+SOFTWARE.
\ No newline at end of file
diff --git a/vendor/licenses/grammar/asp.tmbundle.txt b/vendor/licenses/grammar/asp.tmbundle.txt
index 45c75edfe1..a0a653a382 100644
--- a/vendor/licenses/grammar/asp.tmbundle.txt
+++ b/vendor/licenses/grammar/asp.tmbundle.txt
@@ -1,10 +1,9 @@
---
type: grammar
name: asp.tmbundle
+version: 144b21081aa53b8856f839aea68a724312f6001d
license: permissive
-curated: true
---
-
If not otherwise specified (see below), files in this repository fall under the following license:
Permission to copy, use, modify, sell and distribute this
@@ -12,4 +11,4 @@ If not otherwise specified (see below), files in this repository fall under the
express or implied warranty, and with no claim as to its
suitability for any purpose.
-An exception is made for files in readable text which contain their own license information, or files where an accompanying file exists (in the same directory) with a “-license” suffix added to the base-name name of the original file, and an extension of txt, html, or similar. For example “tidy” is accompanied by “tidy-license.txt”.
+An exception is made for files in readable text which contain their own license information, or files where an accompanying file exists (in the same directory) with a “-license” suffix added to the base-name name of the original file, and an extension of txt, html, or similar. For example “tidy” is accompanied by “tidy-license.txt”.
\ No newline at end of file
diff --git a/vendor/licenses/grammar/assembly.txt b/vendor/licenses/grammar/assembly.txt
index c351ce726b..3cdda719dd 100644
--- a/vendor/licenses/grammar/assembly.txt
+++ b/vendor/licenses/grammar/assembly.txt
@@ -1,6 +1,7 @@
---
type: grammar
name: assembly
+version: 0ef23e8619103e87a0a90df1b96c2567fbedf7f5
license: mit
---
Copyright (c) 2012-2014 Adam Strzelecki
@@ -22,4 +23,4 @@ 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.
+WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
\ No newline at end of file
diff --git a/vendor/licenses/grammar/atom-firestore-grammar.txt b/vendor/licenses/grammar/atom-firestore-grammar.txt
index b459437241..1dbb3b3aa6 100644
--- a/vendor/licenses/grammar/atom-firestore-grammar.txt
+++ b/vendor/licenses/grammar/atom-firestore-grammar.txt
@@ -1,6 +1,7 @@
---
type: grammar
name: atom-firestore-grammar
+version: 750ec2abef42f7061c6bcc29ed5db3b0a1f3f773
license: mit
---
MIT License
@@ -27,4 +28,4 @@ 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.
+SOFTWARE.
\ No newline at end of file
diff --git a/vendor/licenses/grammar/atom-fsharp.txt b/vendor/licenses/grammar/atom-fsharp.txt
index 24a413ca4e..61f71ce638 100644
--- a/vendor/licenses/grammar/atom-fsharp.txt
+++ b/vendor/licenses/grammar/atom-fsharp.txt
@@ -1,6 +1,7 @@
---
type: grammar
name: atom-fsharp
+version: c875802334ce03cd027a4127f8e6c974568ccc79
license: mit
---
The MIT License (MIT)
diff --git a/vendor/licenses/grammar/atom-fstar.txt b/vendor/licenses/grammar/atom-fstar.txt
index b767aaedd8..3325be2eb6 100644
--- a/vendor/licenses/grammar/atom-fstar.txt
+++ b/vendor/licenses/grammar/atom-fstar.txt
@@ -1,6 +1,7 @@
---
type: grammar
name: atom-fstar
+version: d7ee2f76a83b675392498ad0b0a0511d8310a30b
license: apache-2.0
---
Apache License
@@ -192,4 +193,4 @@ Apache License
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
- limitations under the License.
+ limitations under the License.
\ No newline at end of file
diff --git a/vendor/licenses/grammar/atom-language-1c-bsl.txt b/vendor/licenses/grammar/atom-language-1c-bsl.txt
index b1f0d78cea..aef44ac057 100644
--- a/vendor/licenses/grammar/atom-language-1c-bsl.txt
+++ b/vendor/licenses/grammar/atom-language-1c-bsl.txt
@@ -1,25 +1,31 @@
---
type: grammar
name: atom-language-1c-bsl
+version: 15edb999f4673d255c2a40083e43bb72d661ac4e
license: mit
---
+The MIT License (MIT)
+=====================
+
Copyright © 2015 xDrivenDevelopment
-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:
+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.
+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/vendor/licenses/grammar/atom-language-clean.txt b/vendor/licenses/grammar/atom-language-clean.txt
index 43ea0cbb11..1ffa6f48bb 100644
--- a/vendor/licenses/grammar/atom-language-clean.txt
+++ b/vendor/licenses/grammar/atom-language-clean.txt
@@ -1,9 +1,10 @@
---
type: grammar
name: atom-language-clean
+version: 82829c50aafb2d57423e3ec66c405e3eb9e97a02
license: mit
---
-Copyright (c) 2015
+Copyright (c) 2015 Tim Steenvoorden
Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
@@ -22,4 +23,4 @@ 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.
+WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
\ No newline at end of file
diff --git a/vendor/licenses/grammar/atom-language-julia.txt b/vendor/licenses/grammar/atom-language-julia.txt
index e45395b6e2..e7e585cfc6 100644
--- a/vendor/licenses/grammar/atom-language-julia.txt
+++ b/vendor/licenses/grammar/atom-language-julia.txt
@@ -1,6 +1,7 @@
---
type: grammar
name: atom-language-julia
+version: 40cd93f71ac8aa659eb4e1c5904dec3d81f1297c
license: mit
---
The atom-language-julia package is licensed under the MIT "Expat" License:
@@ -24,4 +25,4 @@ The atom-language-julia package is licensed under the MIT "Expat" License:
> 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.
+> SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
\ No newline at end of file
diff --git a/vendor/licenses/grammar/atom-language-nextflow.txt b/vendor/licenses/grammar/atom-language-nextflow.txt
index 36e9934d8f..5cb36ec209 100644
--- a/vendor/licenses/grammar/atom-language-nextflow.txt
+++ b/vendor/licenses/grammar/atom-language-nextflow.txt
@@ -1,6 +1,7 @@
---
type: grammar
name: atom-language-nextflow
+version: cf1ea6d773477a6a4cb8d80b4846deab611d9ab0
license: mit
---
Copyright (c) 2018 Paolo Di Tommaso
diff --git a/vendor/licenses/grammar/atom-language-p4.txt b/vendor/licenses/grammar/atom-language-p4.txt
index bc0d3bef88..ab504caac5 100644
--- a/vendor/licenses/grammar/atom-language-p4.txt
+++ b/vendor/licenses/grammar/atom-language-p4.txt
@@ -1,6 +1,7 @@
---
type: grammar
name: atom-language-p4
+version: a349af898dbe060fd548040fa352233d865aef8e
license: mit
---
Copyright (c) 2016 Yi Tseng
@@ -9,4 +10,4 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of
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.
+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/vendor/licenses/grammar/atom-language-perl6.txt b/vendor/licenses/grammar/atom-language-perl6.txt
index d079e26d68..abc12485f2 100644
--- a/vendor/licenses/grammar/atom-language-perl6.txt
+++ b/vendor/licenses/grammar/atom-language-perl6.txt
@@ -1,10 +1,10 @@
---
type: grammar
name: atom-language-perl6
+version: 81b97522eafbdb228115eae7e3baa94d387d5146
license: mit
---
-
-MIT License
+The MIT License (MIT)
Copyright (c) 2015 Jacob Russo
@@ -38,4 +38,4 @@ license, located in `README.mdown`:
Permission to copy, use, modify, sell and distribute this
software is granted. This software is provided "as is" without
express or implied warranty, and with no claim as to its
-suitability for any purpose.
+suitability for any purpose.
\ No newline at end of file
diff --git a/vendor/licenses/grammar/atom-language-purescript.txt b/vendor/licenses/grammar/atom-language-purescript.txt
index 737d5825e4..f8afe1f9b2 100644
--- a/vendor/licenses/grammar/atom-language-purescript.txt
+++ b/vendor/licenses/grammar/atom-language-purescript.txt
@@ -1,6 +1,7 @@
---
type: grammar
name: atom-language-purescript
+version: 80d3c37a4ee86abe6a5c4e195714dc091a26c161
license: mit
---
Copyright (c) 2014 Darin Morrison
@@ -48,4 +49,4 @@ 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.
+SOFTWARE.
\ No newline at end of file
diff --git a/vendor/licenses/grammar/atom-language-rust.txt b/vendor/licenses/grammar/atom-language-rust.txt
index f53a8205c0..a0d9ea802c 100644
--- a/vendor/licenses/grammar/atom-language-rust.txt
+++ b/vendor/licenses/grammar/atom-language-rust.txt
@@ -1,6 +1,7 @@
---
type: grammar
name: atom-language-rust
+version: 179f449a69182cae4fcdf644d59d842b7e445f89
license: mit
---
The MIT License (MIT)
@@ -23,4 +24,4 @@ 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.
+CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
\ No newline at end of file
diff --git a/vendor/licenses/grammar/atom-language-srt.txt b/vendor/licenses/grammar/atom-language-srt.txt
index 9a4c73e094..ec5f097fc4 100644
--- a/vendor/licenses/grammar/atom-language-srt.txt
+++ b/vendor/licenses/grammar/atom-language-srt.txt
@@ -1,6 +1,7 @@
---
type: grammar
name: atom-language-srt
+version: 386b4b64aee092200753fe12f6caadddc844271b
license: mit
---
Copyright (c) 2016 Pieter Goetschalckx
@@ -22,4 +23,4 @@ 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.
+WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
\ No newline at end of file
diff --git a/vendor/licenses/grammar/atom-language-stan.txt b/vendor/licenses/grammar/atom-language-stan.txt
index 958df9b238..12f3305f24 100644
--- a/vendor/licenses/grammar/atom-language-stan.txt
+++ b/vendor/licenses/grammar/atom-language-stan.txt
@@ -1,6 +1,7 @@
---
type: grammar
name: atom-language-stan
+version: db46b8262399cfd276a828ca2047fa2ce098df1a
license: mit
---
Copyright (c) 2015 Jeffrey B. Arnold
@@ -22,4 +23,4 @@ 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.
+WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
\ No newline at end of file
diff --git a/vendor/licenses/grammar/atom-salt.txt b/vendor/licenses/grammar/atom-salt.txt
index 8877135eb6..2e948c989b 100644
--- a/vendor/licenses/grammar/atom-salt.txt
+++ b/vendor/licenses/grammar/atom-salt.txt
@@ -1,6 +1,7 @@
---
type: grammar
name: atom-salt
+version: a08e21764ec53b1656ac0f0e6754e054272f6eb1
license: mit
---
Copyright (c) 2014 GitHub Inc.
@@ -33,4 +34,4 @@ license, located in `README.mdown`:
Permission to copy, use, modify, sell and distribute this
software is granted. This software is provided "as is" without
express or implied warranty, and with no claim as to its
-suitability for any purpose.
+suitability for any purpose.
\ No newline at end of file
diff --git a/vendor/licenses/grammar/atomic-dreams.txt b/vendor/licenses/grammar/atomic-dreams.txt
index 3905f73733..e2f36028fa 100644
--- a/vendor/licenses/grammar/atomic-dreams.txt
+++ b/vendor/licenses/grammar/atomic-dreams.txt
@@ -1,14 +1,13 @@
---
type: grammar
name: atomic-dreams
+version: 234b52d4828230d7741c35af2681619b55e972eb
license: mit
-curated: true
---
-
Copyright (c) 2016 Pieter-Jan Briers, Kyle J. Kemp
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.
+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/vendor/licenses/grammar/ats.txt b/vendor/licenses/grammar/ats.txt
index b771bd5cd4..006df9f6b8 100644
--- a/vendor/licenses/grammar/ats.txt
+++ b/vendor/licenses/grammar/ats.txt
@@ -1,6 +1,7 @@
---
type: grammar
name: ats
+version: b4f5a7a9ceaf257ada89cb1068fb170db51cd426
license: mit
---
The MIT License (MIT)
@@ -23,4 +24,4 @@ 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.
+SOFTWARE.
\ No newline at end of file
diff --git a/vendor/licenses/grammar/awk-sublime.txt b/vendor/licenses/grammar/awk-sublime.txt
index 40a8ebbe05..97256bb4bf 100644
--- a/vendor/licenses/grammar/awk-sublime.txt
+++ b/vendor/licenses/grammar/awk-sublime.txt
@@ -1,6 +1,7 @@
---
type: grammar
name: awk-sublime
+version: 72b487a1046d86b8a195b38fa18802d2abe30370
license: mit
---
The MIT License (MIT)
@@ -23,4 +24,4 @@ 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.
+SOFTWARE.
\ No newline at end of file
diff --git a/vendor/licenses/grammar/ballerina-grammar.txt b/vendor/licenses/grammar/ballerina-grammar.txt
index 8abcce787d..e7cdc35a3d 100644
--- a/vendor/licenses/grammar/ballerina-grammar.txt
+++ b/vendor/licenses/grammar/ballerina-grammar.txt
@@ -1,6 +1,7 @@
---
type: grammar
name: ballerina-grammar
+version: b7372c23154b3ccf9a55ef14e1abdbf753f4e2f2
license: apache-2.0
---
Apache License
@@ -183,7 +184,7 @@ license: apache-2.0
APPENDIX: How to apply the Apache License to your work.
To apply the Apache License to your work, attach the following
- boilerplate notice, with the fields enclosed by brackets "{}"
+ boilerplate notice, with the fields enclosed by brackets "[]"
replaced with your own identifying information. (Don't include
the brackets!) The text should be enclosed in the appropriate
comment syntax for the file format. We also recommend that a
@@ -191,7 +192,7 @@ license: apache-2.0
same "printed page" as the copyright notice for easier
identification within third-party archives.
- Copyright {yyyy} {name of copyright owner}
+ Copyright [yyyy] [name of copyright owner]
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
@@ -203,4 +204,4 @@ license: apache-2.0
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
- limitations under the License.
+ limitations under the License.
\ No newline at end of file
diff --git a/vendor/licenses/grammar/bison.tmbundle.txt b/vendor/licenses/grammar/bison.tmbundle.txt
index 1956786e07..553738f530 100644
--- a/vendor/licenses/grammar/bison.tmbundle.txt
+++ b/vendor/licenses/grammar/bison.tmbundle.txt
@@ -1,10 +1,9 @@
---
type: grammar
name: bison.tmbundle
+version: c6832286bd7792bcad2e66653803217b117373c6
license: permissive
-curated: true
---
-
If not otherwise specified (see below), files in this repository fall under the following license:
Permission to copy, use, modify, sell and distribute this
@@ -12,4 +11,4 @@ If not otherwise specified (see below), files in this repository fall under the
express or implied warranty, and with no claim as to its
suitability for any purpose.
-An exception is made for files in readable text which contain their own license information, or files where an accompanying file exists (in the same directory) with a “-license” suffix added to the base-name name of the original file, and an extension of txt, html, or similar. For example “tidy” is accompanied by “tidy-license.txt”.
+An exception is made for files in readable text which contain their own license information, or files where an accompanying file exists (in the same directory) with a “-license” suffix added to the base-name name of the original file, and an extension of txt, html, or similar. For example “tidy” is accompanied by “tidy-license.txt”.
\ No newline at end of file
diff --git a/vendor/licenses/grammar/blitzmax.txt b/vendor/licenses/grammar/blitzmax.txt
index 179be3f17a..d34d04d8ec 100644
--- a/vendor/licenses/grammar/blitzmax.txt
+++ b/vendor/licenses/grammar/blitzmax.txt
@@ -1,8 +1,8 @@
---
type: grammar
name: blitzmax
+version: 7ee210811a19436f978c272266c484bbc5e36d95
license: permissive
-curated: true
---
If not otherwise specified (see below), files in this repository fall under the following license:
diff --git a/vendor/licenses/grammar/boo.txt b/vendor/licenses/grammar/boo.txt
index 9cde56c0ea..a7dab19c2b 100644
--- a/vendor/licenses/grammar/boo.txt
+++ b/vendor/licenses/grammar/boo.txt
@@ -1,6 +1,7 @@
---
type: grammar
name: boo
+version: d5344462c4209d978e5eb67a067b911c729793e8
license: mit
---
The MIT License (MIT)
diff --git a/vendor/licenses/grammar/bro-sublime.txt b/vendor/licenses/grammar/bro-sublime.txt
index ce8fa28ee6..6e72ac1879 100644
--- a/vendor/licenses/grammar/bro-sublime.txt
+++ b/vendor/licenses/grammar/bro-sublime.txt
@@ -1,6 +1,7 @@
---
type: grammar
name: bro-sublime
+version: 28125c911e4625f0a441d54afe1fc9cc18680601
license: bsd-3-clause
---
Copyright (c) 2014, Christian Struck and the
diff --git a/vendor/licenses/grammar/c.tmbundle.txt b/vendor/licenses/grammar/c.tmbundle.txt
index 052822bd3b..b3ac271cdb 100644
--- a/vendor/licenses/grammar/c.tmbundle.txt
+++ b/vendor/licenses/grammar/c.tmbundle.txt
@@ -1,10 +1,9 @@
---
type: grammar
name: c.tmbundle
+version: 6d4e073cc924d6f28c68d4d1c57b23564e162235
license: permissive
-curated: true
---
-
If not otherwise specified (see below), files in this repository fall under the following license:
Permission to copy, use, modify, sell and distribute this
@@ -12,4 +11,4 @@ If not otherwise specified (see below), files in this repository fall under the
express or implied warranty, and with no claim as to its
suitability for any purpose.
-An exception is made for files in readable text which contain their own license information, or files where an accompanying file exists (in the same directory) with a “-license” suffix added to the base-name name of the original file, and an extension of txt, html, or similar. For example “tidy” is accompanied by “tidy-license.txt”.
+An exception is made for files in readable text which contain their own license information, or files where an accompanying file exists (in the same directory) with a “-license” suffix added to the base-name name of the original file, and an extension of txt, html, or similar. For example “tidy” is accompanied by “tidy-license.txt”.
\ No newline at end of file
diff --git a/vendor/licenses/grammar/capnproto.tmbundle.txt b/vendor/licenses/grammar/capnproto.tmbundle.txt
index 95d57390da..bf990bbe05 100644
--- a/vendor/licenses/grammar/capnproto.tmbundle.txt
+++ b/vendor/licenses/grammar/capnproto.tmbundle.txt
@@ -1,8 +1,8 @@
---
type: grammar
name: capnproto.tmbundle
+version: 9fab42eb8a28b6138b8c11ce841efe10962b852e
license: permissive
-curated: true
---
If not otherwise specified (see below), files in this repository fall under the following license:
@@ -11,4 +11,4 @@ If not otherwise specified (see below), files in this repository fall under the
express or implied warranty, and with no claim as to its
suitability for any purpose.
-An exception is made for files in readable text which contain their own license information, or files where an accompanying file exists (in the same directory) with a “-license” suffix added to the base-name name of the original file, and an extension of txt, html, or similar. For example “tidy” is accompanied by “tidy-license.txt”.
+An exception is made for files in readable text which contain their own license information, or files where an accompanying file exists (in the same directory) with a “-license” suffix added to the base-name name of the original file, and an extension of txt, html, or similar. For example “tidy” is accompanied by “tidy-license.txt”.
\ No newline at end of file
diff --git a/vendor/licenses/grammar/carto-atom.txt b/vendor/licenses/grammar/carto-atom.txt
index c1e383858d..0068a4325e 100644
--- a/vendor/licenses/grammar/carto-atom.txt
+++ b/vendor/licenses/grammar/carto-atom.txt
@@ -1,6 +1,7 @@
---
type: grammar
name: carto-atom
+version: '08a80dc54a9ca44c82e406e4f36cfbc8d7afa6f6'
license: mit
---
The MIT License (MIT)
@@ -23,4 +24,4 @@ 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.
+SOFTWARE.
\ No newline at end of file
diff --git a/vendor/licenses/grammar/ceylon-sublimetext.txt b/vendor/licenses/grammar/ceylon-sublimetext.txt
index cc8d9f01eb..0903ebd61e 100644
--- a/vendor/licenses/grammar/ceylon-sublimetext.txt
+++ b/vendor/licenses/grammar/ceylon-sublimetext.txt
@@ -1,6 +1,7 @@
---
type: grammar
name: ceylon-sublimetext
+version: 0ee3154f3795ff03050ee678a37e6b0afb899069
license: apache-2.0
---
Apache License
@@ -203,4 +204,4 @@ Apache License
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
- limitations under the License.
+ limitations under the License.
\ No newline at end of file
diff --git a/vendor/licenses/grammar/chapel-tmbundle.txt b/vendor/licenses/grammar/chapel-tmbundle.txt
index 159b9b4398..de9d19e2ed 100644
--- a/vendor/licenses/grammar/chapel-tmbundle.txt
+++ b/vendor/licenses/grammar/chapel-tmbundle.txt
@@ -1,6 +1,7 @@
---
type: grammar
name: chapel-tmbundle
+version: cf537b70d514a4d04ad596b05fdc9eb4a664452f
license: apache-2.0
---
Apache License
@@ -203,4 +204,4 @@ Apache License
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
- limitations under the License.
+ limitations under the License.
\ No newline at end of file
diff --git a/vendor/licenses/grammar/cmake.tmbundle.txt b/vendor/licenses/grammar/cmake.tmbundle.txt
index c3a9069e2d..58b751d4c0 100644
--- a/vendor/licenses/grammar/cmake.tmbundle.txt
+++ b/vendor/licenses/grammar/cmake.tmbundle.txt
@@ -1,10 +1,9 @@
---
type: grammar
name: cmake.tmbundle
+version: 1421c6ba47ba697742d615e92852cfe106e0879e
license: permissive
-curated: true
---
-
If not otherwise specified (see below), files in this repository fall under the following license:
Permission to copy, use, modify, sell and distribute this
@@ -12,4 +11,4 @@ If not otherwise specified (see below), files in this repository fall under the
express or implied warranty, and with no claim as to its
suitability for any purpose.
-An exception is made for files in readable text which contain their own license information, or files where an accompanying file exists (in the same directory) with a “-license” suffix added to the base-name name of the original file, and an extension of txt, html, or similar. For example “tidy” is accompanied by “tidy-license.txt”.
+An exception is made for files in readable text which contain their own license information, or files where an accompanying file exists (in the same directory) with a “-license” suffix added to the base-name name of the original file, and an extension of txt, html, or similar. For example “tidy” is accompanied by “tidy-license.txt”.
\ No newline at end of file
diff --git a/vendor/licenses/grammar/conllu-linguist-grammar.txt b/vendor/licenses/grammar/conllu-linguist-grammar.txt
index 75db34d5a4..dd88621da7 100644
--- a/vendor/licenses/grammar/conllu-linguist-grammar.txt
+++ b/vendor/licenses/grammar/conllu-linguist-grammar.txt
@@ -1,6 +1,7 @@
---
type: grammar
name: conllu-linguist-grammar
+version: e9710323ce3e41afb3723c936d65597ed8cb684e
license: apache-2.0
---
Apache License
@@ -203,4 +204,4 @@ license: apache-2.0
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
- limitations under the License.
+ limitations under the License.
\ No newline at end of file
diff --git a/vendor/licenses/grammar/cool-tmbundle.txt b/vendor/licenses/grammar/cool-tmbundle.txt
index b375c632c4..c7cfeba4a7 100644
--- a/vendor/licenses/grammar/cool-tmbundle.txt
+++ b/vendor/licenses/grammar/cool-tmbundle.txt
@@ -1,6 +1,7 @@
---
type: grammar
name: cool-tmbundle
+version: ab3a3356e2ff4096b23af984da09188e75371759
license: mit
---
The MIT License (MIT)
diff --git a/vendor/licenses/grammar/cpp-qt.tmbundle.txt b/vendor/licenses/grammar/cpp-qt.tmbundle.txt
index a54f456798..93e399a89c 100644
--- a/vendor/licenses/grammar/cpp-qt.tmbundle.txt
+++ b/vendor/licenses/grammar/cpp-qt.tmbundle.txt
@@ -1,10 +1,9 @@
---
type: grammar
name: cpp-qt.tmbundle
+version: 5a2a10734dad293fc1aee558d7872feb9c8030f3
license: permissive
-curated: true
---
-
If not otherwise specified (see below), files in this repository fall under the following license:
Permission to copy, use, modify, sell and distribute this
@@ -12,4 +11,4 @@ If not otherwise specified (see below), files in this repository fall under the
express or implied warranty, and with no claim as to its
suitability for any purpose.
-An exception is made for files in readable text which contain their own license information, or files where an accompanying file exists (in the same directory) with a “-license” suffix added to the base-name name of the original file, and an extension of txt, html, or similar. For example “tidy” is accompanied by “tidy-license.txt”.
+An exception is made for files in readable text which contain their own license information, or files where an accompanying file exists (in the same directory) with a “-license” suffix added to the base-name name of the original file, and an extension of txt, html, or similar. For example “tidy” is accompanied by “tidy-license.txt”.
\ No newline at end of file
diff --git a/vendor/licenses/grammar/creole.txt b/vendor/licenses/grammar/creole.txt
index 0fc5ef947c..08344e03d6 100644
--- a/vendor/licenses/grammar/creole.txt
+++ b/vendor/licenses/grammar/creole.txt
@@ -1,19 +1,20 @@
---
type: grammar
name: creole
+version: ce4a6f28e5b51cb1575174a8d10924bcca91d410
license: mit
---
The MIT License (MIT)
Copyright (c) 2012 Siddley
-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,
+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
+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.
diff --git a/vendor/licenses/grammar/cucumber-tmbundle.txt b/vendor/licenses/grammar/cucumber-tmbundle.txt
index 2eb60b0301..39870e37e7 100644
--- a/vendor/licenses/grammar/cucumber-tmbundle.txt
+++ b/vendor/licenses/grammar/cucumber-tmbundle.txt
@@ -1,6 +1,7 @@
---
type: grammar
name: cucumber-tmbundle
+version: f826aa8396e1a799635c577db1d2336627053fbd
license: mit
---
Copyright (c) 2008-2009 Ben Mabey
@@ -21,4 +22,4 @@ 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.
+THE SOFTWARE.
\ No newline at end of file
diff --git a/vendor/licenses/grammar/cython.txt b/vendor/licenses/grammar/cython.txt
index 31515e2fed..e4ac3b889c 100644
--- a/vendor/licenses/grammar/cython.txt
+++ b/vendor/licenses/grammar/cython.txt
@@ -1,10 +1,9 @@
---
type: grammar
name: cython
+version: 43a86f0e97970d6ea1a01124cb0b6bcac0ce516e
license: permissive
-curated: true
---
-
If not otherwise specified (see below), files in this repository fall under the following license:
Permission to copy, use, modify, sell and distribute this
@@ -12,4 +11,4 @@ If not otherwise specified (see below), files in this repository fall under the
express or implied warranty, and with no claim as to its
suitability for any purpose.
-An exception is made for files in readable text which contain their own license information, or files where an accompanying file exists (in the same directory) with a “-license” suffix added to the base-name name of the original file, and an extension of txt, html, or similar. For example “tidy” is accompanied by “tidy-license.txt”.
+An exception is made for files in readable text which contain their own license information, or files where an accompanying file exists (in the same directory) with a “-license” suffix added to the base-name name of the original file, and an extension of txt, html, or similar. For example “tidy” is accompanied by “tidy-license.txt”.
\ No newline at end of file
diff --git a/vendor/licenses/grammar/d.tmbundle.txt b/vendor/licenses/grammar/d.tmbundle.txt
index bb8c7e5e3a..84130d5c53 100644
--- a/vendor/licenses/grammar/d.tmbundle.txt
+++ b/vendor/licenses/grammar/d.tmbundle.txt
@@ -1,10 +1,9 @@
---
type: grammar
name: d.tmbundle
+version: b96ccfc5237ecddbad476cd87a5533aa96009088
license: permissive
-curated: true
---
-
If not otherwise specified (see below), files in this repository fall under the following license:
Permission to copy, use, modify, sell and distribute this
@@ -12,4 +11,4 @@ If not otherwise specified (see below), files in this repository fall under the
express or implied warranty, and with no claim as to its
suitability for any purpose.
-An exception is made for files in readable text which contain their own license information, or files where an accompanying file exists (in the same directory) with a “-license” suffix added to the base-name name of the original file, and an extension of txt, html, or similar. For example “tidy” is accompanied by “tidy-license.txt”.
+An exception is made for files in readable text which contain their own license information, or files where an accompanying file exists (in the same directory) with a “-license” suffix added to the base-name name of the original file, and an extension of txt, html, or similar. For example “tidy” is accompanied by “tidy-license.txt”.
\ No newline at end of file
diff --git a/vendor/licenses/grammar/dartlang.txt b/vendor/licenses/grammar/dartlang.txt
index 1a5d545c74..273775381a 100644
--- a/vendor/licenses/grammar/dartlang.txt
+++ b/vendor/licenses/grammar/dartlang.txt
@@ -1,6 +1,7 @@
---
type: grammar
name: dartlang
+version: 85c03964072bcfbab29085fd8ced16e722aac790
license: bsd-3-clause
---
Copyright 2015, the Dart project authors. All rights reserved.
@@ -28,4 +29,4 @@ LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
-OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
\ No newline at end of file
diff --git a/vendor/licenses/grammar/data-weave-tmLanguage.txt b/vendor/licenses/grammar/data-weave-tmLanguage.txt
index 5bec247e0b..c83450a7b9 100644
--- a/vendor/licenses/grammar/data-weave-tmLanguage.txt
+++ b/vendor/licenses/grammar/data-weave-tmLanguage.txt
@@ -1,6 +1,7 @@
---
type: grammar
name: data-weave-tmLanguage
+version: ad3c9b39ecaa140d33132028ab0c7b3b32d1dce6
license: mit
---
Copyright (c) Mulesoft inc
diff --git a/vendor/licenses/grammar/desktop.tmbundle.txt b/vendor/licenses/grammar/desktop.tmbundle.txt
index 46e835af1b..771ebb829b 100644
--- a/vendor/licenses/grammar/desktop.tmbundle.txt
+++ b/vendor/licenses/grammar/desktop.tmbundle.txt
@@ -1,10 +1,9 @@
---
type: grammar
name: desktop.tmbundle
+version: 34f9b8ab985ff7d981661f632eeff6d6c080cea8
license: permissive
-curated: true
---
-
If not otherwise specified (see below), files in this repository fall under the following license:
Permission to copy, use, modify, sell and distribute this
@@ -12,4 +11,4 @@ If not otherwise specified (see below), files in this repository fall under the
express or implied warranty, and with no claim as to its
suitability for any purpose.
-An exception is made for files in readable text which contain their own license information, or files where an accompanying file exists (in the same directory) with a “-license” suffix added to the base-name name of the original file, and an extension of txt, html, or similar. For example “tidy” is accompanied by “tidy-license.txt”.
+An exception is made for files in readable text which contain their own license information, or files where an accompanying file exists (in the same directory) with a “-license” suffix added to the base-name name of the original file, and an extension of txt, html, or similar. For example “tidy” is accompanied by “tidy-license.txt”.
\ No newline at end of file
diff --git a/vendor/licenses/grammar/diff.tmbundle.txt b/vendor/licenses/grammar/diff.tmbundle.txt
index 3d7adde69d..717233c757 100644
--- a/vendor/licenses/grammar/diff.tmbundle.txt
+++ b/vendor/licenses/grammar/diff.tmbundle.txt
@@ -1,10 +1,9 @@
---
type: grammar
name: diff.tmbundle
+version: '0593bb775eab1824af97ef2172fd38822abd97d7'
license: permissive
-curated: true
---
-
If not otherwise specified (see below), files in this repository fall under the following license:
Permission to copy, use, modify, sell and distribute this
@@ -12,4 +11,4 @@ If not otherwise specified (see below), files in this repository fall under the
express or implied warranty, and with no claim as to its
suitability for any purpose.
-An exception is made for files in readable text which contain their own license information, or files where an accompanying file exists (in the same directory) with a “-license” suffix added to the base-name name of the original file, and an extension of txt, html, or similar. For example “tidy” is accompanied by “tidy-license.txt”.
+An exception is made for files in readable text which contain their own license information, or files where an accompanying file exists (in the same directory) with a “-license” suffix added to the base-name name of the original file, and an extension of txt, html, or similar. For example “tidy” is accompanied by “tidy-license.txt”.
\ No newline at end of file
diff --git a/vendor/licenses/grammar/dylan.tmbundle.txt b/vendor/licenses/grammar/dylan.tmbundle.txt
index 2cee288089..7391ffc469 100644
--- a/vendor/licenses/grammar/dylan.tmbundle.txt
+++ b/vendor/licenses/grammar/dylan.tmbundle.txt
@@ -1,10 +1,9 @@
---
type: grammar
name: dylan.tmbundle
+version: d1f521cc1dc5fba4976388d35d278faa02fabb57
license: permissive
-curated: true
---
-
If not otherwise specified (see below), files in this repository fall under the following license:
Permission to copy, use, modify, sell and distribute this
@@ -12,4 +11,4 @@ If not otherwise specified (see below), files in this repository fall under the
express or implied warranty, and with no claim as to its
suitability for any purpose.
-An exception is made for files in readable text which contain their own license information, or files where an accompanying file exists (in the same directory) with a “-license” suffix added to the base-name name of the original file, and an extension of txt, html, or similar. For example “tidy” is accompanied by “tidy-license.txt”.
+An exception is made for files in readable text which contain their own license information, or files where an accompanying file exists (in the same directory) with a “-license” suffix added to the base-name name of the original file, and an extension of txt, html, or similar. For example “tidy” is accompanied by “tidy-license.txt”.
\ No newline at end of file
diff --git a/vendor/licenses/grammar/ec.tmbundle.txt b/vendor/licenses/grammar/ec.tmbundle.txt
index ce40bf41f2..2880072be8 100644
--- a/vendor/licenses/grammar/ec.tmbundle.txt
+++ b/vendor/licenses/grammar/ec.tmbundle.txt
@@ -1,6 +1,7 @@
---
type: grammar
name: ec.tmbundle
+version: 8bd523cee45bcdc86182a732e88e3d12b602b3cc
license: unlicense
---
This is free and unencumbered software released into the public domain.
@@ -26,4 +27,4 @@ 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.
-For more information, please refer to
+For more information, please refer to
\ No newline at end of file
diff --git a/vendor/licenses/grammar/eiffel.tmbundle.txt b/vendor/licenses/grammar/eiffel.tmbundle.txt
index 21ceeb6c90..0dba427d7b 100644
--- a/vendor/licenses/grammar/eiffel.tmbundle.txt
+++ b/vendor/licenses/grammar/eiffel.tmbundle.txt
@@ -1,10 +1,9 @@
---
type: grammar
name: eiffel.tmbundle
+version: 90662167c35bc4dcd1623400c5e9f99136b95992
license: permissive
-curated: true
---
-
If not otherwise specified (see below), files in this repository fall under the following license:
Permission to copy, use, modify, sell and distribute this
@@ -12,4 +11,4 @@ If not otherwise specified (see below), files in this repository fall under the
express or implied warranty, and with no claim as to its
suitability for any purpose.
-An exception is made for files in readable text which contain their own license information, or files where an accompanying file exists (in the same directory) with a “-license” suffix added to the base-name name of the original file, and an extension of txt, html, or similar. For example “tidy” is accompanied by “tidy-license.txt”.
+An exception is made for files in readable text which contain their own license information, or files where an accompanying file exists (in the same directory) with a “-license” suffix added to the base-name name of the original file, and an extension of txt, html, or similar. For example “tidy” is accompanied by “tidy-license.txt”.
\ No newline at end of file
diff --git a/vendor/licenses/grammar/ejs-tmbundle.txt b/vendor/licenses/grammar/ejs-tmbundle.txt
index 4bf7fe4b15..96314c805d 100644
--- a/vendor/licenses/grammar/ejs-tmbundle.txt
+++ b/vendor/licenses/grammar/ejs-tmbundle.txt
@@ -1,8 +1,27 @@
---
type: grammar
name: ejs-tmbundle
+version: 5e48fff7258a94a8f57b142fa38571a1f9f68c44
license: mit
-curated: true
---
+MIT License
-EJS TextMate Bundle is released under the MIT license.
+Copyright (c) 2016 Gregory Man
+
+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/vendor/licenses/grammar/elixir-tmbundle.txt b/vendor/licenses/grammar/elixir-tmbundle.txt
index e870e0c216..4857ccabca 100644
--- a/vendor/licenses/grammar/elixir-tmbundle.txt
+++ b/vendor/licenses/grammar/elixir-tmbundle.txt
@@ -1,8 +1,8 @@
---
type: grammar
name: elixir-tmbundle
+version: a3f5d42a3151ae42feb528e71e79ab31f362206a
license: apache-2.0
-curated: true
---
Copyright 2012 Plataformatec.
@@ -16,4 +16,4 @@ Copyright 2012 Plataformatec.
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
- limitations under the License.
+ limitations under the License.
\ No newline at end of file
diff --git a/vendor/licenses/grammar/erlang.tmbundle.txt b/vendor/licenses/grammar/erlang.tmbundle.txt
index 44631d3d22..271fafc142 100644
--- a/vendor/licenses/grammar/erlang.tmbundle.txt
+++ b/vendor/licenses/grammar/erlang.tmbundle.txt
@@ -1,10 +1,9 @@
---
type: grammar
name: erlang.tmbundle
+version: af0889d5baff21648a4d757acfd5e8920e2dfc0a
license: permissive
-curated: true
---
-
If not otherwise specified (see below), files in this repository fall under the following license:
Permission to copy, use, modify, sell and distribute this
@@ -12,4 +11,4 @@ If not otherwise specified (see below), files in this repository fall under the
express or implied warranty, and with no claim as to its
suitability for any purpose.
-An exception is made for files in readable text which contain their own license information, or files where an accompanying file exists (in the same directory) with a “-license” suffix added to the base-name name of the original file, and an extension of txt, html, or similar. For example “tidy” is accompanied by “tidy-license.txt”.
+An exception is made for files in readable text which contain their own license information, or files where an accompanying file exists (in the same directory) with a “-license” suffix added to the base-name name of the original file, and an extension of txt, html, or similar. For example “tidy” is accompanied by “tidy-license.txt”.
\ No newline at end of file
diff --git a/vendor/licenses/grammar/factor.txt b/vendor/licenses/grammar/factor.txt
index 6bea604e31..1506f73367 100644
--- a/vendor/licenses/grammar/factor.txt
+++ b/vendor/licenses/grammar/factor.txt
@@ -1,6 +1,7 @@
---
type: grammar
name: factor
+version: d99c9e16632d2eb1e5a8862182529d3dcc6b7c56
license: bsd-2-clause
---
Redistribution and use in source and binary forms, with or without
@@ -22,4 +23,4 @@ PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
-ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
\ No newline at end of file
diff --git a/vendor/licenses/grammar/fancy-tmbundle.txt b/vendor/licenses/grammar/fancy-tmbundle.txt
index 73e458e842..bc2506db14 100644
--- a/vendor/licenses/grammar/fancy-tmbundle.txt
+++ b/vendor/licenses/grammar/fancy-tmbundle.txt
@@ -1,6 +1,7 @@
---
type: grammar
name: fancy-tmbundle
+version: bcb8ba3a727f666daa5fb62f9646be85bf451e5f
license: bsd-3-clause
---
Copyright (c) 2014, Christopher Bertels
@@ -21,4 +22,4 @@ DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
SERVICES; LOSS OF USE, DATA, OR PROFITS OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
-OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
\ No newline at end of file
diff --git a/vendor/licenses/grammar/fish-tmbundle.txt b/vendor/licenses/grammar/fish-tmbundle.txt
index 5927510347..592a05b3a3 100644
--- a/vendor/licenses/grammar/fish-tmbundle.txt
+++ b/vendor/licenses/grammar/fish-tmbundle.txt
@@ -1,6 +1,7 @@
---
type: grammar
name: fish-tmbundle
+version: 25e83e24225b72c97d173e829734f8bc3dfcafe7
license: mit
---
The MIT License (MIT)
@@ -23,4 +24,4 @@ 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.
+SOFTWARE.
\ No newline at end of file
diff --git a/vendor/licenses/grammar/forth.txt b/vendor/licenses/grammar/forth.txt
index ec9c0253fb..69d2e617a2 100644
--- a/vendor/licenses/grammar/forth.txt
+++ b/vendor/licenses/grammar/forth.txt
@@ -1,8 +1,8 @@
---
type: grammar
name: forth
+version: 0cf0ec91f65717903b41ea6cd62f6cd17788f0d0
license: permissive
-curated: true
---
If not otherwise specified (see below), files in this repository fall under the following license:
@@ -11,4 +11,4 @@ If not otherwise specified (see below), files in this repository fall under the
express or implied warranty, and with no claim as to its
suitability for any purpose.
-An exception is made for files in readable text which contain their own license information, or files where an accompanying file exists (in the same directory) with a “-license” suffix added to the base-name name of the original file, and an extension of txt, html, or similar. For example “tidy” is accompanied by “tidy-license.txt”.
+An exception is made for files in readable text which contain their own license information, or files where an accompanying file exists (in the same directory) with a “-license” suffix added to the base-name name of the original file, and an extension of txt, html, or similar. For example “tidy” is accompanied by “tidy-license.txt”.
\ No newline at end of file
diff --git a/vendor/licenses/grammar/fortran.tmbundle.txt b/vendor/licenses/grammar/fortran.tmbundle.txt
index ee54cd5f70..d869fd0f2b 100644
--- a/vendor/licenses/grammar/fortran.tmbundle.txt
+++ b/vendor/licenses/grammar/fortran.tmbundle.txt
@@ -1,10 +1,9 @@
---
type: grammar
name: fortran.tmbundle
+version: 5f8326483b8678dca14e0412aec11dca195eb034
license: permissive
-curated: true
---
-
If not otherwise specified (see below), files in this repository fall under the following license:
Permission to copy, use, modify, sell and distribute this
@@ -12,4 +11,4 @@ If not otherwise specified (see below), files in this repository fall under the
express or implied warranty, and with no claim as to its
suitability for any purpose.
-An exception is made for files in readable text which contain their own license information, or files where an accompanying file exists (in the same directory) with a “-license” suffix added to the base-name name of the original file, and an extension of txt, html, or similar. For example “tidy” is accompanied by “tidy-license.txt”.
+An exception is made for files in readable text which contain their own license information, or files where an accompanying file exists (in the same directory) with a “-license” suffix added to the base-name name of the original file, and an extension of txt, html, or similar. For example “tidy” is accompanied by “tidy-license.txt”.
\ No newline at end of file
diff --git a/vendor/licenses/grammar/gap-tmbundle.txt b/vendor/licenses/grammar/gap-tmbundle.txt
index 36f715a665..01c2d71fa6 100644
--- a/vendor/licenses/grammar/gap-tmbundle.txt
+++ b/vendor/licenses/grammar/gap-tmbundle.txt
@@ -1,12 +1,12 @@
---
type: grammar
name: gap-tmbundle
+version: ba190972214b7426447790a2cb195735571cfacd
license: permissive
-curated: true
---
If not otherwise specified, files in this repository fall under the following license:
Permission to copy, use, modify, sell and distribute this
software is granted. This software is provided "as is" without
express or implied warranty, and with no claim as to its
- suitability for any purpose.
+ suitability for any purpose.
\ No newline at end of file
diff --git a/vendor/licenses/grammar/gdscript.txt b/vendor/licenses/grammar/gdscript.txt
index d3baa2301b..86edff1b1d 100644
--- a/vendor/licenses/grammar/gdscript.txt
+++ b/vendor/licenses/grammar/gdscript.txt
@@ -1,6 +1,7 @@
---
type: grammar
name: gdscript
+version: 59f45c8a55fea830794587c5e7cd17eaf267f799
license: mit
---
Copyright (c) 2016 Michael Alexander
@@ -9,4 +10,4 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of
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.
+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/vendor/licenses/grammar/gettext.tmbundle.txt b/vendor/licenses/grammar/gettext.tmbundle.txt
index f48c2c382f..907f0be5f8 100644
--- a/vendor/licenses/grammar/gettext.tmbundle.txt
+++ b/vendor/licenses/grammar/gettext.tmbundle.txt
@@ -1,10 +1,9 @@
---
type: grammar
name: gettext.tmbundle
+version: '08bb69558d82ada8d4f36b8869f871ce69014749'
license: permissive
-curated: true
---
-
If not otherwise specified (see below), files in this repository fall under the following license:
Permission to copy, use, modify, sell and distribute this
@@ -12,4 +11,4 @@ If not otherwise specified (see below), files in this repository fall under the
express or implied warranty, and with no claim as to its
suitability for any purpose.
-An exception is made for files in readable text which contain their own license information, or files where an accompanying file exists (in the same directory) with a “-license” suffix added to the base-name name of the original file, and an extension of txt, html, or similar. For example “tidy” is accompanied by “tidy-license.txt”.
+An exception is made for files in readable text which contain their own license information, or files where an accompanying file exists (in the same directory) with a “-license” suffix added to the base-name name of the original file, and an extension of txt, html, or similar. For example “tidy” is accompanied by “tidy-license.txt”.
\ No newline at end of file
diff --git a/vendor/licenses/grammar/gnuplot-tmbundle.txt b/vendor/licenses/grammar/gnuplot-tmbundle.txt
index 4d7dcdf557..78d4742a44 100644
--- a/vendor/licenses/grammar/gnuplot-tmbundle.txt
+++ b/vendor/licenses/grammar/gnuplot-tmbundle.txt
@@ -1,6 +1,7 @@
---
type: grammar
name: gnuplot-tmbundle
+version: 1950830563977a831eb127e4f92307dbf43830cb
license: mit
---
Copyright 2008 Matt Foster
@@ -21,4 +22,4 @@ 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.
+THE SOFTWARE.
\ No newline at end of file
diff --git a/vendor/licenses/grammar/go-tmbundle.txt b/vendor/licenses/grammar/go-tmbundle.txt
index af4ad437c5..73126ea044 100644
--- a/vendor/licenses/grammar/go-tmbundle.txt
+++ b/vendor/licenses/grammar/go-tmbundle.txt
@@ -1,6 +1,7 @@
---
type: grammar
name: go-tmbundle
+version: f3b6c46ada574e19104b4eeb029649e1214f2ea4
license: bsd-3-clause
---
Copyright (c) 2009, Jim Dovey
diff --git a/vendor/licenses/grammar/grace.txt b/vendor/licenses/grammar/grace.txt
index 4a3fd0d578..939862ead9 100644
--- a/vendor/licenses/grammar/grace.txt
+++ b/vendor/licenses/grammar/grace.txt
@@ -1,6 +1,7 @@
---
type: grammar
name: grace
+version: 5a142d38b03da55b0e816a2cece39cd7fd1d7345
license: mit
---
Copyright (c) 2011-2016 Timothy Jones
@@ -22,4 +23,4 @@ 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.
+WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
\ No newline at end of file
diff --git a/vendor/licenses/grammar/gradle.tmbundle.txt b/vendor/licenses/grammar/gradle.tmbundle.txt
index 47343815de..1533ff3b90 100644
--- a/vendor/licenses/grammar/gradle.tmbundle.txt
+++ b/vendor/licenses/grammar/gradle.tmbundle.txt
@@ -1,6 +1,7 @@
---
type: grammar
name: gradle.tmbundle
+version: 772fc9d008f19b4041a6cee7e7659b18565da0ff
license: apache-2.0
---
Apache License
@@ -176,5 +177,4 @@ license: apache-2.0
of any other Contributor, and only if You agree to indemnify,
defend, and hold each Contributor harmless for any liability
incurred by, or claims asserted against, such Contributor by reason
- of your accepting any such warranty or additional liability.
-
+ of your accepting any such warranty or additional liability.
\ No newline at end of file
diff --git a/vendor/licenses/grammar/graphviz.tmbundle.txt b/vendor/licenses/grammar/graphviz.tmbundle.txt
index d9c813a320..7cbfee3d44 100644
--- a/vendor/licenses/grammar/graphviz.tmbundle.txt
+++ b/vendor/licenses/grammar/graphviz.tmbundle.txt
@@ -1,10 +1,9 @@
---
type: grammar
name: graphviz.tmbundle
+version: d1d489f893a0e6ef5d9021bf7dc1ffd08b3f9b90
license: permissive
-curated: true
---
-
If not otherwise specified (see below), files in this repository fall under the following license:
Permission to copy, use, modify, sell and distribute this
@@ -12,4 +11,4 @@ If not otherwise specified (see below), files in this repository fall under the
express or implied warranty, and with no claim as to its
suitability for any purpose.
-An exception is made for files in readable text which contain their own license information, or files where an accompanying file exists (in the same directory) with a “-license” suffix added to the base-name name of the original file, and an extension of txt, html, or similar. For example “tidy” is accompanied by “tidy-license.txt”.
+An exception is made for files in readable text which contain their own license information, or files where an accompanying file exists (in the same directory) with a “-license” suffix added to the base-name name of the original file, and an extension of txt, html, or similar. For example “tidy” is accompanied by “tidy-license.txt”.
\ No newline at end of file
diff --git a/vendor/licenses/grammar/groovy.tmbundle.txt b/vendor/licenses/grammar/groovy.tmbundle.txt
index 1fd784a651..8a408bd00b 100644
--- a/vendor/licenses/grammar/groovy.tmbundle.txt
+++ b/vendor/licenses/grammar/groovy.tmbundle.txt
@@ -1,10 +1,9 @@
---
type: grammar
name: groovy.tmbundle
+version: 6f903cacfb2d5397a350eeb73bc36b2c40f3da70
license: permissive
-curated: true
---
-
If not otherwise specified (see below), files in this repository fall under the following license:
Permission to copy, use, modify, sell and distribute this
@@ -12,4 +11,4 @@ If not otherwise specified (see below), files in this repository fall under the
express or implied warranty, and with no claim as to its
suitability for any purpose.
-An exception is made for files in readable text which contain their own license information, or files where an accompanying file exists (in the same directory) with a “-license” suffix added to the base-name name of the original file, and an extension of txt, html, or similar. For example “tidy” is accompanied by “tidy-license.txt”.
+An exception is made for files in readable text which contain their own license information, or files where an accompanying file exists (in the same directory) with a “-license” suffix added to the base-name name of the original file, and an extension of txt, html, or similar. For example “tidy” is accompanied by “tidy-license.txt”.
\ No newline at end of file
diff --git a/vendor/licenses/grammar/haxe-TmLanguage.txt b/vendor/licenses/grammar/haxe-TmLanguage.txt
index 13e201e03f..9317ecc2db 100644
--- a/vendor/licenses/grammar/haxe-TmLanguage.txt
+++ b/vendor/licenses/grammar/haxe-TmLanguage.txt
@@ -1,6 +1,7 @@
---
type: grammar
name: haxe-TmLanguage
+version: 5bbb350eef6c64e458c11beb7d17cff97ce42aae
license: mit
---
The MIT License (MIT)
diff --git a/vendor/licenses/grammar/html.tmbundle.txt b/vendor/licenses/grammar/html.tmbundle.txt
index 13adfdec1a..55790bb014 100644
--- a/vendor/licenses/grammar/html.tmbundle.txt
+++ b/vendor/licenses/grammar/html.tmbundle.txt
@@ -1,10 +1,9 @@
---
type: grammar
name: html.tmbundle
+version: 6a6fb2967e2f562a634fca97d18018104d428f1c
license: permissive
-curated: true
---
-
If not otherwise specified (see below), files in this repository fall under the following license:
Permission to copy, use, modify, sell and distribute this
@@ -12,4 +11,4 @@ If not otherwise specified (see below), files in this repository fall under the
express or implied warranty, and with no claim as to its
suitability for any purpose.
-An exception is made for files in readable text which contain their own license information, or files where an accompanying file exists (in the same directory) with a “-license” suffix added to the base-name name of the original file, and an extension of txt, html, or similar. For example “tidy” is accompanied by “tidy-license.txt”.
+An exception is made for files in readable text which contain their own license information, or files where an accompanying file exists (in the same directory) with a “-license” suffix added to the base-name name of the original file, and an extension of txt, html, or similar. For example “tidy” is accompanied by “tidy-license.txt”.
\ No newline at end of file
diff --git a/vendor/licenses/grammar/hy.tmLanguage.txt b/vendor/licenses/grammar/hy.tmLanguage.txt
index c48930a617..1bef293aed 100644
--- a/vendor/licenses/grammar/hy.tmLanguage.txt
+++ b/vendor/licenses/grammar/hy.tmLanguage.txt
@@ -1,6 +1,7 @@
---
type: grammar
name: hy.tmLanguage
+version: 8d490ea34b087efe723d21ce9c370b60dd373b2e
license: mit
---
Copyright 2018 Stephan Wolski
@@ -64,5 +65,4 @@ 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.
-
+SOFTWARE.
\ No newline at end of file
diff --git a/vendor/licenses/grammar/idl.tmbundle.txt b/vendor/licenses/grammar/idl.tmbundle.txt
index aa001f0c81..b7abc03779 100644
--- a/vendor/licenses/grammar/idl.tmbundle.txt
+++ b/vendor/licenses/grammar/idl.tmbundle.txt
@@ -1,6 +1,7 @@
---
type: grammar
name: idl.tmbundle
+version: 59270cf03eecd9f6674abce496f6ce86d0100f1c
license: bsd-3-clause
---
This library is released under a BSD-type license.
@@ -30,4 +31,4 @@ DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
-OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
\ No newline at end of file
diff --git a/vendor/licenses/grammar/idris.txt b/vendor/licenses/grammar/idris.txt
index 07b81a8040..c3fbb88be5 100644
--- a/vendor/licenses/grammar/idris.txt
+++ b/vendor/licenses/grammar/idris.txt
@@ -1,6 +1,7 @@
---
type: grammar
name: idris
+version: 92fc0b5a8fe251f0e6c807fddd22bb449e29bbea
license: mit
---
The MIT License
@@ -23,4 +24,4 @@ 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.
+THE SOFTWARE.
\ No newline at end of file
diff --git a/vendor/licenses/grammar/ini.tmbundle.txt b/vendor/licenses/grammar/ini.tmbundle.txt
index 48add2b04f..024263cc80 100644
--- a/vendor/licenses/grammar/ini.tmbundle.txt
+++ b/vendor/licenses/grammar/ini.tmbundle.txt
@@ -1,10 +1,9 @@
---
type: grammar
name: ini.tmbundle
+version: 7d8c7b5544c48069a246fd2f43e965f06d03d3da
license: permissive
-curated: true
---
-
If not otherwise specified (see below), files in this repository fall under the following license:
Permission to copy, use, modify, sell and distribute this
@@ -12,4 +11,4 @@ If not otherwise specified (see below), files in this repository fall under the
express or implied warranty, and with no claim as to its
suitability for any purpose.
-An exception is made for files in readable text which contain their own license information, or files where an accompanying file exists (in the same directory) with a “-license” suffix added to the base-name name of the original file, and an extension of txt, html, or similar. For example “tidy” is accompanied by “tidy-license.txt”.
+An exception is made for files in readable text which contain their own license information, or files where an accompanying file exists (in the same directory) with a “-license” suffix added to the base-name name of the original file, and an extension of txt, html, or similar. For example “tidy” is accompanied by “tidy-license.txt”.
\ No newline at end of file
diff --git a/vendor/licenses/grammar/io.tmbundle.txt b/vendor/licenses/grammar/io.tmbundle.txt
index a28b1462a9..46fdccf0d4 100644
--- a/vendor/licenses/grammar/io.tmbundle.txt
+++ b/vendor/licenses/grammar/io.tmbundle.txt
@@ -1,10 +1,9 @@
---
type: grammar
name: io.tmbundle
+version: e8f7b3773544cfc14a7ede7344ed94683f7ed602
license: permissive
-curated: true
---
-
If not otherwise specified (see below), files in this repository fall under the following license:
Permission to copy, use, modify, sell and distribute this
@@ -12,4 +11,4 @@ If not otherwise specified (see below), files in this repository fall under the
express or implied warranty, and with no claim as to its
suitability for any purpose.
-An exception is made for files in readable text which contain their own license information, or files where an accompanying file exists (in the same directory) with a “-license” suffix added to the base-name name of the original file, and an extension of txt, html, or similar. For example “tidy” is accompanied by “tidy-license.txt”.
+An exception is made for files in readable text which contain their own license information, or files where an accompanying file exists (in the same directory) with a “-license” suffix added to the base-name name of the original file, and an extension of txt, html, or similar. For example “tidy” is accompanied by “tidy-license.txt”.
\ No newline at end of file
diff --git a/vendor/licenses/grammar/ioke-outdated.txt b/vendor/licenses/grammar/ioke-outdated.txt
index 8044790a43..8646f88095 100644
--- a/vendor/licenses/grammar/ioke-outdated.txt
+++ b/vendor/licenses/grammar/ioke-outdated.txt
@@ -1,6 +1,7 @@
---
type: grammar
name: ioke-outdated
+version: 165ade05bce54881ec6408837dad9aed74720a7e
license: mit
---
Copyright (c) 2008-2009 Ola Bini, ola.bini@gmail.com
@@ -23,7 +24,7 @@ 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.
---------------------------------------------------------------------------------
+********************************************************************************
Different parts of Ioke is covered by different licences and copyrights:
ikj:
@@ -38,3 +39,41 @@ The namespace Ioke.Math is covered by the file LICENSE.kawa.
The class Ioke.Math.BigDecimal and Ioke.Math.MathContext is covered by the file LICENSE.icu4j
Everything else is covered by the file LICENSE, unless noted.
+
+********************************************************************************
+
+COPYRIGHT AND PERMISSION NOTICE
+
+Copyright (c) 1995-2009 International Business Machines Corporation and others
+
+All rights reserved.
+
+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, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, provided that the above copyright notice(s) and this permission notice appear in all copies of the Software and that both the above copyright notice(s) and this permission notice appear in supporting documentation.
+
+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 OF THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
+
+Except as contained in this notice, the name of a copyright holder shall not be used in advertising or otherwise to promote the sale, use or other dealings in this Software without prior written authorization of the copyright holder.
+
+
+********************************************************************************
+The software (with related files and documentation) in these packages
+are copyright (C) 1996-2006 Per Bothner.
+
+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/vendor/licenses/grammar/jade-tmbundle.txt b/vendor/licenses/grammar/jade-tmbundle.txt
index b3ca03295f..0966c1a979 100644
--- a/vendor/licenses/grammar/jade-tmbundle.txt
+++ b/vendor/licenses/grammar/jade-tmbundle.txt
@@ -1,6 +1,7 @@
---
type: grammar
name: jade-tmbundle
+version: f311a516bb29296fcebfdc7da8149b1c79dfb0a1
license: mit
---
The MIT License (MIT)
@@ -22,4 +23,4 @@ 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.
+CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
\ No newline at end of file
diff --git a/vendor/licenses/grammar/jasmin-sublime.txt b/vendor/licenses/grammar/jasmin-sublime.txt
index 5ba61c964c..2129938e76 100644
--- a/vendor/licenses/grammar/jasmin-sublime.txt
+++ b/vendor/licenses/grammar/jasmin-sublime.txt
@@ -1,7 +1,7 @@
---
type: grammar
name: jasmin-sublime
+version: 4191e4cf68426aa0df125a211e03c1d4105eb819
license: mit
-curated: true
---
-[MIT License](http://choosealicense.com/licenses/mit/)
+[MIT License](http://choosealicense.com/licenses/mit/)
\ No newline at end of file
diff --git a/vendor/licenses/grammar/java.tmbundle.txt b/vendor/licenses/grammar/java.tmbundle.txt
index a0fd82186b..5873063445 100644
--- a/vendor/licenses/grammar/java.tmbundle.txt
+++ b/vendor/licenses/grammar/java.tmbundle.txt
@@ -1,10 +1,9 @@
---
type: grammar
name: java.tmbundle
+version: 043207b63e7a01c96c49a8b72478570eeaa3ac96
license: permissive
-curated: true
---
-
If not otherwise specified (see below), files in this repository fall under the following license:
Permission to copy, use, modify, sell and distribute this
@@ -12,4 +11,4 @@ If not otherwise specified (see below), files in this repository fall under the
express or implied warranty, and with no claim as to its
suitability for any purpose.
-An exception is made for files in readable text which contain their own license information, or files where an accompanying file exists (in the same directory) with a “-license” suffix added to the base-name name of the original file, and an extension of txt, html, or similar. For example “tidy” is accompanied by “tidy-license.txt”.
+An exception is made for files in readable text which contain their own license information, or files where an accompanying file exists (in the same directory) with a “-license” suffix added to the base-name name of the original file, and an extension of txt, html, or similar. For example “tidy” is accompanied by “tidy-license.txt”.
\ No newline at end of file
diff --git a/vendor/licenses/grammar/javadoc.tmbundle.txt b/vendor/licenses/grammar/javadoc.tmbundle.txt
index 5e06f5202f..3b9edbd366 100644
--- a/vendor/licenses/grammar/javadoc.tmbundle.txt
+++ b/vendor/licenses/grammar/javadoc.tmbundle.txt
@@ -1,8 +1,8 @@
---
type: grammar
name: javadoc.tmbundle
+version: 5276d7a93f0cf53b7d425c39c6968b09ea9f2d40
license: permissive
-curated: true
---
If not otherwise specified (see below), files in this repository fall under the following license:
@@ -11,4 +11,4 @@ If not otherwise specified (see below), files in this repository fall under the
express or implied warranty, and with no claim as to its
suitability for any purpose.
-An exception is made for files in readable text which contain their own license information, or files where an accompanying file exists (in the same directory) with a “-license” suffix added to the base-name name of the original file, and an extension of txt, html, or similar. For example “tidy” is accompanied by “tidy-license.txt”.
+An exception is made for files in readable text which contain their own license information, or files where an accompanying file exists (in the same directory) with a “-license” suffix added to the base-name name of the original file, and an extension of txt, html, or similar. For example “tidy” is accompanied by “tidy-license.txt”.
\ No newline at end of file
diff --git a/vendor/licenses/grammar/javascript-objective-j.tmbundle.txt b/vendor/licenses/grammar/javascript-objective-j.tmbundle.txt
index 91ad84ee78..9006ca5322 100644
--- a/vendor/licenses/grammar/javascript-objective-j.tmbundle.txt
+++ b/vendor/licenses/grammar/javascript-objective-j.tmbundle.txt
@@ -1,10 +1,9 @@
---
type: grammar
name: javascript-objective-j.tmbundle
+version: b96701b5ebea10c6cb363fb2a8fdb32d93093b3b
license: permissive
-curated: true
---
-
If not otherwise specified (see below), files in this repository fall under the following license:
Permission to copy, use, modify, sell and distribute this
@@ -12,4 +11,4 @@ If not otherwise specified (see below), files in this repository fall under the
express or implied warranty, and with no claim as to its
suitability for any purpose.
-An exception is made for files in readable text which contain their own license information, or files where an accompanying file exists (in the same directory) with a “-license” suffix added to the base-name name of the original file, and an extension of txt, html, or similar. For example “tidy” is accompanied by “tidy-license.txt”.
+An exception is made for files in readable text which contain their own license information, or files where an accompanying file exists (in the same directory) with a “-license” suffix added to the base-name name of the original file, and an extension of txt, html, or similar. For example “tidy” is accompanied by “tidy-license.txt”.
\ No newline at end of file
diff --git a/vendor/licenses/grammar/jflex.tmbundle.txt b/vendor/licenses/grammar/jflex.tmbundle.txt
index a660ddfb28..f6dbfaf7cd 100644
--- a/vendor/licenses/grammar/jflex.tmbundle.txt
+++ b/vendor/licenses/grammar/jflex.tmbundle.txt
@@ -1,6 +1,7 @@
---
type: grammar
name: jflex.tmbundle
+version: 879cc0ebc937f19a836bf3bb7ef52d1164ef5813
license: bsd-2-clause
---
JFlex TextMate Bundle
@@ -29,4 +30,4 @@ OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
-SUCH DAMAGE.
+SUCH DAMAGE.
\ No newline at end of file
diff --git a/vendor/licenses/grammar/json.tmbundle.txt b/vendor/licenses/grammar/json.tmbundle.txt
index dae4160d9e..9070071687 100644
--- a/vendor/licenses/grammar/json.tmbundle.txt
+++ b/vendor/licenses/grammar/json.tmbundle.txt
@@ -1,10 +1,9 @@
---
type: grammar
name: json.tmbundle
+version: 563b6f629bcf2c77d239b03fa768f869a4cba368
license: permissive
-curated: true
---
-
If not otherwise specified (see below), files in this repository fall under the following license:
Permission to copy, use, modify, sell and distribute this
@@ -12,4 +11,4 @@ If not otherwise specified (see below), files in this repository fall under the
express or implied warranty, and with no claim as to its
suitability for any purpose.
-An exception is made for files in readable text which contain their own license information, or files where an accompanying file exists (in the same directory) with a “-license” suffix added to the base-name name of the original file, and an extension of txt, html, or similar. For example “tidy” is accompanied by “tidy-license.txt”.
+An exception is made for files in readable text which contain their own license information, or files where an accompanying file exists (in the same directory) with a “-license” suffix added to the base-name name of the original file, and an extension of txt, html, or similar. For example “tidy” is accompanied by “tidy-license.txt”.
\ No newline at end of file
diff --git a/vendor/licenses/grammar/language-agc.txt b/vendor/licenses/grammar/language-agc.txt
index e6b6845950..b9a7ee04d5 100644
--- a/vendor/licenses/grammar/language-agc.txt
+++ b/vendor/licenses/grammar/language-agc.txt
@@ -1,6 +1,7 @@
---
type: grammar
name: language-agc
+version: 6fb398ee1110d65f4c92c7644e8e6d896dc43300
license: isc
---
Copyright (c) 2016, John Gardner
@@ -15,4 +16,4 @@ MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
-OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
+OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
\ No newline at end of file
diff --git a/vendor/licenses/grammar/language-apl.txt b/vendor/licenses/grammar/language-apl.txt
index 7f0d087e9b..6de74375ae 100644
--- a/vendor/licenses/grammar/language-apl.txt
+++ b/vendor/licenses/grammar/language-apl.txt
@@ -1,9 +1,10 @@
---
type: grammar
name: language-apl
+version: 4101b4f6da6d1620e0919cddff6833b5f91065b4
license: isc
---
-Copyright (c) 2016, John Gardner
+Copyright (c) 2016-2018, John Gardner
Permission to use, copy, modify, and/or distribute this software for any
purpose with or without fee is hereby granted, provided that the above
@@ -15,4 +16,4 @@ MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
-OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
+OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
\ No newline at end of file
diff --git a/vendor/licenses/grammar/language-asn1.txt b/vendor/licenses/grammar/language-asn1.txt
index 3f9bfcae93..cfba7e1bcf 100644
--- a/vendor/licenses/grammar/language-asn1.txt
+++ b/vendor/licenses/grammar/language-asn1.txt
@@ -1,6 +1,7 @@
---
type: grammar
name: language-asn1
+version: f100c5aabf4fe95598ed1be6de8924a0c05c4bb1
license: mit
---
The MIT License (MIT)
@@ -23,4 +24,4 @@ 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.
+SOFTWARE.
\ No newline at end of file
diff --git a/vendor/licenses/grammar/language-babel.txt b/vendor/licenses/grammar/language-babel.txt
index 9ae3677d9d..1ce2e1681c 100644
--- a/vendor/licenses/grammar/language-babel.txt
+++ b/vendor/licenses/grammar/language-babel.txt
@@ -1,6 +1,7 @@
---
type: grammar
name: language-babel
+version: 4b43df39fed0bd5d3a6431a83a59591bafde434d
license: mit
---
Copyright (c) 2015 Graham Clark
@@ -22,4 +23,4 @@ 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.
+WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
\ No newline at end of file
diff --git a/vendor/licenses/grammar/language-batchfile.txt b/vendor/licenses/grammar/language-batchfile.txt
index 4f9ab62e4c..4dd43a7139 100644
--- a/vendor/licenses/grammar/language-batchfile.txt
+++ b/vendor/licenses/grammar/language-batchfile.txt
@@ -1,9 +1,10 @@
---
type: grammar
name: language-batchfile
+version: 25d3045c6d99ad52ab147858a5aa64dace43fcb0
license: mit
---
-Copyright (c) 2014 Michael Mims
+Copyright (c) 2017 Michael Mims
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
@@ -21,4 +22,4 @@ 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.
+THE SOFTWARE.
\ No newline at end of file
diff --git a/vendor/licenses/grammar/language-blade.txt b/vendor/licenses/grammar/language-blade.txt
index b79b7a7ad2..c2a0260070 100644
--- a/vendor/licenses/grammar/language-blade.txt
+++ b/vendor/licenses/grammar/language-blade.txt
@@ -1,6 +1,7 @@
---
type: grammar
name: language-blade
+version: 85a3074430d04acfff4f3e2228f144c8ad15aae3
license: mit
---
Copyright (c) 2016 Andreas Olsson, Indrek Ardel
@@ -57,4 +58,4 @@ license, located in `README.mdown`:
> Permission to copy, use, modify, sell and distribute this
software is granted. This software is provided "as is" without
express or implied warranty, and with no claim as to its
-suitability for any purpose.
+suitability for any purpose.
\ No newline at end of file
diff --git a/vendor/licenses/grammar/language-click.txt b/vendor/licenses/grammar/language-click.txt
index 6ef97e62d7..9568f70576 100644
--- a/vendor/licenses/grammar/language-click.txt
+++ b/vendor/licenses/grammar/language-click.txt
@@ -1,6 +1,7 @@
---
type: grammar
name: language-click
+version: 104f915f6228fb04ac9301993227b4649dc71eef
license: mit
---
Copyright (c) 2015 Sten Verbois
@@ -22,4 +23,4 @@ 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.
+WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
\ No newline at end of file
diff --git a/vendor/licenses/grammar/language-clojure.txt b/vendor/licenses/grammar/language-clojure.txt
index 0d5396f09d..c17e2cce7e 100644
--- a/vendor/licenses/grammar/language-clojure.txt
+++ b/vendor/licenses/grammar/language-clojure.txt
@@ -1,6 +1,7 @@
---
type: grammar
name: language-clojure
+version: a6dcd90d25892465f7f38b76562ffa38591f8ae7
license: mit
---
Copyright (c) 2014 GitHub Inc.
@@ -50,4 +51,4 @@ 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.
+SOFTWARE.
\ No newline at end of file
diff --git a/vendor/licenses/grammar/language-closure-templates.txt b/vendor/licenses/grammar/language-closure-templates.txt
index 8ac352bcef..242c37dd38 100644
--- a/vendor/licenses/grammar/language-closure-templates.txt
+++ b/vendor/licenses/grammar/language-closure-templates.txt
@@ -1,6 +1,7 @@
---
type: grammar
name: language-closure-templates
+version: 6b2d820cbf594533ca08e600b2c0d79008d5bf2a
license: mit
---
MIT License
@@ -23,4 +24,4 @@ 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.
+SOFTWARE.
\ No newline at end of file
diff --git a/vendor/licenses/grammar/language-coffee-script.txt b/vendor/licenses/grammar/language-coffee-script.txt
index 34a5034465..5c676fa573 100644
--- a/vendor/licenses/grammar/language-coffee-script.txt
+++ b/vendor/licenses/grammar/language-coffee-script.txt
@@ -1,6 +1,7 @@
---
type: grammar
name: language-coffee-script
+version: 0ce181521185e7e48af79dd1e5dc8caed2e453cf
license: mit
---
Copyright (c) 2014 GitHub Inc.
@@ -51,4 +52,4 @@ 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.
+OTHER DEALINGS IN THE SOFTWARE.
\ No newline at end of file
diff --git a/vendor/licenses/grammar/language-crystal.txt b/vendor/licenses/grammar/language-crystal.txt
index b8d74732e2..a4c0f504e6 100644
--- a/vendor/licenses/grammar/language-crystal.txt
+++ b/vendor/licenses/grammar/language-crystal.txt
@@ -1,6 +1,7 @@
---
type: grammar
name: language-crystal
+version: 303f28ba31433d39d39697c5c62ba398b622bf23
license: mit
---
Copyright (c) 2014 GitHub Inc.
@@ -33,4 +34,4 @@ license, located in `README.mdown`:
Permission to copy, use, modify, sell and distribute this
software is granted. This software is provided "as is" without
express or implied warranty, and with no claim as to its
-suitability for any purpose.
+suitability for any purpose.
\ No newline at end of file
diff --git a/vendor/licenses/grammar/language-csharp.txt b/vendor/licenses/grammar/language-csharp.txt
index 0e696e9148..370b556e09 100644
--- a/vendor/licenses/grammar/language-csharp.txt
+++ b/vendor/licenses/grammar/language-csharp.txt
@@ -1,41 +1,32 @@
---
type: grammar
name: language-csharp
+version: 707c1bd0469fb29f55a05b8651edc98c06055d7a
license: mit
-curated: true
---
-Copyright (c) 2014 GitHub Inc.
+MIT License
-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:
+Copyright (c) 2016 .NET Foundation, GitHub Inc.
-The above copyright notice and this permission notice shall be
-included in all copies or substantial portions of the Software.
+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 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.
+The above copyright notice and this permission notice shall be included in all
+copies or substantial portions of the Software.
---------------------------------------------------------------------
-
-This package was derived from a TextMate bundle located at
-https://github.com/wintermi/csharp-tmbundle by Matthew Winter @wintermi and
-Adam Lickel @lickel and distributed under the following license, located in
-`README.markdown`:
+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.
-This bundle is dual-licensed under MIT and GPL licenses.
-
- - http://www.opensource.org/licenses/mit-license.php
- - http://www.gnu.org/licenses/gpl.html
+--------------------------------------------------------------------
-Use it, change it, fork it, sell it. Do what you will, but please leave the
-author attribution.
+This package uses the
+https://github.com/dotnet/csharp-tmLanguage from the .NET Foundation
\ No newline at end of file
diff --git a/vendor/licenses/grammar/language-csound.txt b/vendor/licenses/grammar/language-csound.txt
index 7efa344ca1..a6a885ccd8 100644
--- a/vendor/licenses/grammar/language-csound.txt
+++ b/vendor/licenses/grammar/language-csound.txt
@@ -1,12 +1,13 @@
---
type: grammar
name: language-csound
+version: 606904ae0247a4288f9a434ffc53965fe8d9086e
license: mit
---
-Copyright © 2015–2016 Nathan Whetsell
+Copyright © 2015–2017 Nathan Whetsell
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.
+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/vendor/licenses/grammar/language-css.txt b/vendor/licenses/grammar/language-css.txt
index 42e30cd4ed..1ee17271e1 100644
--- a/vendor/licenses/grammar/language-css.txt
+++ b/vendor/licenses/grammar/language-css.txt
@@ -1,6 +1,7 @@
---
type: grammar
name: language-css
+version: 7e66936c23a899ced5ee6472cd4522a7e5556c0d
license: mit
---
Copyright (c) 2014 GitHub Inc.
@@ -33,4 +34,4 @@ license, located in `README.mdown`:
Permission to copy, use, modify, sell and distribute this
software is granted. This software is provided "as is" without
express or implied warranty, and with no claim as to its
-suitability for any purpose.
+suitability for any purpose.
\ No newline at end of file
diff --git a/vendor/licenses/grammar/language-cwl.txt b/vendor/licenses/grammar/language-cwl.txt
index a0d78479a1..b3d308f2a8 100644
--- a/vendor/licenses/grammar/language-cwl.txt
+++ b/vendor/licenses/grammar/language-cwl.txt
@@ -1,6 +1,7 @@
---
type: grammar
name: language-cwl
+version: 6b84a6c2ae14469595c6996cd4a93cd3bdbfc5cd
license: mit
---
MIT License
@@ -23,4 +24,4 @@ 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.
+SOFTWARE.
\ No newline at end of file
diff --git a/vendor/licenses/grammar/language-emacs-lisp.txt b/vendor/licenses/grammar/language-emacs-lisp.txt
index 46603bd34d..d4556d4a55 100644
--- a/vendor/licenses/grammar/language-emacs-lisp.txt
+++ b/vendor/licenses/grammar/language-emacs-lisp.txt
@@ -1,9 +1,10 @@
---
type: grammar
name: language-emacs-lisp
+version: dba6db346c86e07b630920bf038cbaf99c9e4bcd
license: isc
---
-Copyright (c) 2016, John Gardner
+Copyright (c) 2016-2018, John Gardner
Permission to use, copy, modify, and/or distribute this software for any
purpose with or without fee is hereby granted, provided that the above
@@ -15,4 +16,4 @@ MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
-OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
+OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
\ No newline at end of file
diff --git a/vendor/licenses/grammar/language-fontforge.txt b/vendor/licenses/grammar/language-fontforge.txt
index 3c0b29a85d..ecfc41bdee 100644
--- a/vendor/licenses/grammar/language-fontforge.txt
+++ b/vendor/licenses/grammar/language-fontforge.txt
@@ -1,9 +1,10 @@
---
type: grammar
name: language-fontforge
+version: 87df73a87bee8d366a348947fdeea852f39ba825
license: isc
---
-Copyright (c) 2016, John Gardner
+Copyright (c) 2016-2017, John Gardner
Permission to use, copy, modify, and/or distribute this software for any
purpose with or without fee is hereby granted, provided that the above
@@ -15,4 +16,4 @@ MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
-OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
+OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
\ No newline at end of file
diff --git a/vendor/licenses/grammar/language-gfm.txt b/vendor/licenses/grammar/language-gfm.txt
index e6a6b6b19c..65a7c60f95 100644
--- a/vendor/licenses/grammar/language-gfm.txt
+++ b/vendor/licenses/grammar/language-gfm.txt
@@ -1,6 +1,7 @@
---
type: grammar
name: language-gfm
+version: 7517a6042529f5c723025b7a03bf9f7b6e4f3c1a
license: mit
---
Copyright (c) 2014 GitHub Inc.
@@ -22,4 +23,4 @@ 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.
+WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
\ No newline at end of file
diff --git a/vendor/licenses/grammar/language-gn.txt b/vendor/licenses/grammar/language-gn.txt
index 81e1c1cf13..1cfa57f7b4 100644
--- a/vendor/licenses/grammar/language-gn.txt
+++ b/vendor/licenses/grammar/language-gn.txt
@@ -1,6 +1,7 @@
---
type: grammar
name: language-gn
+version: e77a06e0ab8fedc7681c3c52fd54f66a3eae4097
license: bsd-3-clause
---
Copyright (c) 2015, Devon Carew
@@ -29,4 +30,4 @@ DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
-OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
\ No newline at end of file
diff --git a/vendor/licenses/grammar/language-graphql.txt b/vendor/licenses/grammar/language-graphql.txt
index 6b196dc991..433c42d446 100644
--- a/vendor/licenses/grammar/language-graphql.txt
+++ b/vendor/licenses/grammar/language-graphql.txt
@@ -1,27 +1,27 @@
---
type: grammar
name: language-graphql
+version: 4c9f1526a215646e1c5f56c3e8a73c8adfd19dce
license: mit
-curated: true
---
+MIT License
-The MIT License (MIT)
+Copyright (c) 2016 Robert Mosolgo
-Copyright (c) Robert Mosolgo
-
-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:
+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.
+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/vendor/licenses/grammar/language-haml.txt b/vendor/licenses/grammar/language-haml.txt
index 04eadbe3df..9ff7e89393 100644
--- a/vendor/licenses/grammar/language-haml.txt
+++ b/vendor/licenses/grammar/language-haml.txt
@@ -1,6 +1,7 @@
---
type: grammar
name: language-haml
+version: ee2e5c2045de24a04b3fa704229219da2aaf7e35
license: mit
---
The MIT License (MIT)
@@ -22,4 +23,4 @@ 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.
+CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
\ No newline at end of file
diff --git a/vendor/licenses/grammar/language-haskell.txt b/vendor/licenses/grammar/language-haskell.txt
index d46acdb448..18b3c377eb 100644
--- a/vendor/licenses/grammar/language-haskell.txt
+++ b/vendor/licenses/grammar/language-haskell.txt
@@ -1,11 +1,12 @@
---
type: grammar
name: language-haskell
+version: 46658d010bff57ee7bfa978bac29ff409a5effd4
license: mit
---
The MIT License (MIT)
-Copyright (c) 2015 Atom-Haskell
+Copyright (c) 2014 Atom-Haskell
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
@@ -23,4 +24,4 @@ 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.
+SOFTWARE.
\ No newline at end of file
diff --git a/vendor/licenses/grammar/language-hql.txt b/vendor/licenses/grammar/language-hql.txt
index 30f8d71793..9b525ecd59 100644
--- a/vendor/licenses/grammar/language-hql.txt
+++ b/vendor/licenses/grammar/language-hql.txt
@@ -1,6 +1,7 @@
---
type: grammar
name: language-hql
+version: 02f72104bb2c6f1381e72cebdc6819ee6706a87d
license: mit
---
Copyright (c) 2014 GitHub Inc.
@@ -33,4 +34,4 @@ license, located in `README.mdown`:
Permission to copy, use, modify, sell and distribute this
software is granted. This software is provided "as is" without
express or implied warranty, and with no claim as to its
-suitability for any purpose.
+suitability for any purpose.
\ No newline at end of file
diff --git a/vendor/licenses/grammar/language-inform7.txt b/vendor/licenses/grammar/language-inform7.txt
index 52bfc1d859..ba6cd336dd 100644
--- a/vendor/licenses/grammar/language-inform7.txt
+++ b/vendor/licenses/grammar/language-inform7.txt
@@ -1,6 +1,7 @@
---
type: grammar
name: language-inform7
+version: 4b3db3ec095c63f68b7c5b4bf14466ea32236542
license: mit
---
The MIT License
@@ -23,4 +24,4 @@ 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.
+THE SOFTWARE.
\ No newline at end of file
diff --git a/vendor/licenses/grammar/language-javascript.txt b/vendor/licenses/grammar/language-javascript.txt
index cc666422c9..7f2edd532c 100644
--- a/vendor/licenses/grammar/language-javascript.txt
+++ b/vendor/licenses/grammar/language-javascript.txt
@@ -1,6 +1,7 @@
---
type: grammar
name: language-javascript
+version: 5c627b28edbc212f113185c4d40526a3f2531f6d
license: mit
---
Copyright (c) 2015 GitHub Inc.
@@ -33,4 +34,4 @@ following license, located in `README.mdown`:
Permission to copy, use, modify, sell and distribute this
software is granted. This software is provided "as is" without
express or implied warranty, and with no claim as to its
-suitability for any purpose.
+suitability for any purpose.
\ No newline at end of file
diff --git a/vendor/licenses/grammar/language-jison.txt b/vendor/licenses/grammar/language-jison.txt
index 93b13a594f..d5dbcadfb2 100644
--- a/vendor/licenses/grammar/language-jison.txt
+++ b/vendor/licenses/grammar/language-jison.txt
@@ -1,6 +1,7 @@
---
type: grammar
name: language-jison
+version: 839ea4cd9dcdfa7684a1e1389b810f5006580e9d
license: mit
---
Copyright © 2014–2017 Chris Dibbern
@@ -9,4 +10,4 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of
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.
+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/vendor/licenses/grammar/language-jolie.txt b/vendor/licenses/grammar/language-jolie.txt
index f2dd256723..40ae7cf981 100644
--- a/vendor/licenses/grammar/language-jolie.txt
+++ b/vendor/licenses/grammar/language-jolie.txt
@@ -1,6 +1,7 @@
---
type: grammar
name: language-jolie
+version: 3b91442079089a4a033fb8e8103b97724c951e0d
license: mit
---
The MIT License (MIT)
@@ -23,4 +24,4 @@ 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.
+SOFTWARE.
\ No newline at end of file
diff --git a/vendor/licenses/grammar/language-jsoniq.txt b/vendor/licenses/grammar/language-jsoniq.txt
index 4e5874bb3a..74b2c18edf 100644
--- a/vendor/licenses/grammar/language-jsoniq.txt
+++ b/vendor/licenses/grammar/language-jsoniq.txt
@@ -1,6 +1,7 @@
---
type: grammar
name: language-jsoniq
+version: 5e400b06f1b417746c4c6aff42a2a938b6ef2f82
license: apache-2.0
---
Apache License
@@ -203,4 +204,4 @@ Apache License
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
- limitations under the License.
+ limitations under the License.
\ No newline at end of file
diff --git a/vendor/licenses/grammar/language-kotlin.txt b/vendor/licenses/grammar/language-kotlin.txt
index b6919ee7b5..d49a1f1050 100644
--- a/vendor/licenses/grammar/language-kotlin.txt
+++ b/vendor/licenses/grammar/language-kotlin.txt
@@ -1,6 +1,7 @@
---
type: grammar
name: language-kotlin
+version: 0dc5185fc82137efa99d993b270dce18cf8faa80
license: apache-2.0
---
Apache License
diff --git a/vendor/licenses/grammar/language-less.txt b/vendor/licenses/grammar/language-less.txt
index 84f268dd83..086b538575 100644
--- a/vendor/licenses/grammar/language-less.txt
+++ b/vendor/licenses/grammar/language-less.txt
@@ -1,6 +1,7 @@
---
type: grammar
name: language-less
+version: 15411a47c03a8bb8244aa86207095f4fe7921911
license: mit
---
Copyright (c) 2014 GitHub Inc.
@@ -48,4 +49,4 @@ 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.
+THE SOFTWARE.
\ No newline at end of file
diff --git a/vendor/licenses/grammar/language-maxscript.txt b/vendor/licenses/grammar/language-maxscript.txt
index ab1a4bde04..95f686bf33 100644
--- a/vendor/licenses/grammar/language-maxscript.txt
+++ b/vendor/licenses/grammar/language-maxscript.txt
@@ -1,26 +1,19 @@
---
type: grammar
name: language-maxscript
-license: mit
+version: d873ebb6b8de284daede1e6de6c6133d1913ae05
+license: isc
---
-The MIT License (MIT)
+Copyright (c) 2015-2018, John Gardner
-Copyright (c) 2016 John Gardner
+Permission to use, copy, modify, and/or distribute this software for any
+purpose with or without fee is hereby granted, provided that the above
+copyright notice and this permission notice appear in all copies.
-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.
+THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
+WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
+MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
+ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
+WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
+ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
+OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
\ No newline at end of file
diff --git a/vendor/licenses/grammar/language-meson.txt b/vendor/licenses/grammar/language-meson.txt
index 95072a0ab6..4cc72b1b90 100644
--- a/vendor/licenses/grammar/language-meson.txt
+++ b/vendor/licenses/grammar/language-meson.txt
@@ -1,6 +1,7 @@
---
type: grammar
name: language-meson
+version: 0faa2171199c9c318090d5f054e1b9256e1d808f
license: apache-2.0
---
Apache License
@@ -203,4 +204,4 @@ Apache License
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
- limitations under the License.
+ limitations under the License.
\ No newline at end of file
diff --git a/vendor/licenses/grammar/language-ncl.txt b/vendor/licenses/grammar/language-ncl.txt
index 7c2ae29d41..61f443caed 100644
--- a/vendor/licenses/grammar/language-ncl.txt
+++ b/vendor/licenses/grammar/language-ncl.txt
@@ -1,6 +1,7 @@
---
type: grammar
name: language-ncl
+version: ae46014e687be08bc4a47012fe3f21a31c081b61
license: mit
---
Copyright (c) 2015 Ryan Pavlick (github.com/rpavlick)
@@ -9,4 +10,4 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of
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.
+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/vendor/licenses/grammar/language-ninja.txt b/vendor/licenses/grammar/language-ninja.txt
index 85caa51867..aac4ea1b39 100644
--- a/vendor/licenses/grammar/language-ninja.txt
+++ b/vendor/licenses/grammar/language-ninja.txt
@@ -1,6 +1,7 @@
---
type: grammar
name: language-ninja
+version: 207a60371f4c86d094dcad17e12ea57d4ca0eb7f
license: mit
---
Copyright (c) 2015 Kyle Howen
@@ -22,4 +23,4 @@ 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.
+WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
\ No newline at end of file
diff --git a/vendor/licenses/grammar/language-pan.txt b/vendor/licenses/grammar/language-pan.txt
index 4e9f905783..94e9d8c193 100644
--- a/vendor/licenses/grammar/language-pan.txt
+++ b/vendor/licenses/grammar/language-pan.txt
@@ -1,6 +1,7 @@
---
type: grammar
name: language-pan
+version: fc6c535a6a5cc80ff3cdbdf63e80929ddcead893
license: mit
---
Copyright (c) 2014 GitHub Inc.
@@ -35,4 +36,4 @@ following license, located in `README.mdown`:
Permission to copy, use, modify, sell and distribute this
software is granted. This software is provided "as is" without
express or implied warranty, and with no claim as to its
-suitability for any purpose.
+suitability for any purpose.
\ No newline at end of file
diff --git a/vendor/licenses/grammar/language-pcb.txt b/vendor/licenses/grammar/language-pcb.txt
index 6b3770c0ca..1a672cee38 100644
--- a/vendor/licenses/grammar/language-pcb.txt
+++ b/vendor/licenses/grammar/language-pcb.txt
@@ -1,6 +1,7 @@
---
type: grammar
name: language-pcb
+version: 3d27661a97408f30a68591c5f43b184652aac76f
license: isc
---
Copyright (c) 2017, John Gardner
@@ -15,4 +16,4 @@ MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
-OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
+OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
\ No newline at end of file
diff --git a/vendor/licenses/grammar/language-povray.txt b/vendor/licenses/grammar/language-povray.txt
index 68f5f56906..ed90c1237d 100644
--- a/vendor/licenses/grammar/language-povray.txt
+++ b/vendor/licenses/grammar/language-povray.txt
@@ -1,6 +1,7 @@
---
type: grammar
name: language-povray
+version: c9e175fd41b94e11bf162bf7c0a7dbedfada9749
license: mit
---
Copyright (c) 2016 Christoph Lipka
@@ -22,4 +23,4 @@ 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.
+WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
\ No newline at end of file
diff --git a/vendor/licenses/grammar/language-reason.txt b/vendor/licenses/grammar/language-reason.txt
index 083a42baf6..5d48ca4797 100644
--- a/vendor/licenses/grammar/language-reason.txt
+++ b/vendor/licenses/grammar/language-reason.txt
@@ -1,6 +1,7 @@
---
type: grammar
name: language-reason
+version: 9de5b732b0a53f6f44bc7a9c717dce6162512ae2
license: mit
---
Copyright (c) 2016 Cheng Lou
@@ -9,4 +10,4 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of
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.
+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/vendor/licenses/grammar/language-reg.txt b/vendor/licenses/grammar/language-reg.txt
index 2bd6da58b9..f6dcf365d1 100644
--- a/vendor/licenses/grammar/language-reg.txt
+++ b/vendor/licenses/grammar/language-reg.txt
@@ -1,6 +1,7 @@
---
type: grammar
name: language-reg
+version: 9850e9b9da731f019874ed77394eef185bbab815
license: mit
---
The MIT License (MIT)
diff --git a/vendor/licenses/grammar/language-regexp.txt b/vendor/licenses/grammar/language-regexp.txt
index 29fe86b13b..e88993ae36 100644
--- a/vendor/licenses/grammar/language-regexp.txt
+++ b/vendor/licenses/grammar/language-regexp.txt
@@ -1,6 +1,7 @@
---
type: grammar
name: language-regexp
+version: 3b5782b2fd24a79018199f1f300266068e41a5eb
license: isc
---
Copyright (c) 2016-2017, John Gardner
@@ -15,4 +16,4 @@ MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
-OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
+OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
\ No newline at end of file
diff --git a/vendor/licenses/grammar/language-renpy.txt b/vendor/licenses/grammar/language-renpy.txt
index 92bee1c195..8634048825 100644
--- a/vendor/licenses/grammar/language-renpy.txt
+++ b/vendor/licenses/grammar/language-renpy.txt
@@ -1,12 +1,13 @@
---
type: grammar
name: language-renpy
-license: permissive
-curated: true
+version: ea6e3a0ae3aca71bf3c9c6b1b942ae8dca9ea0f0
+license: mit
---
Original work Copyright (c) 2014 GitHub Inc.
+Modified work Copyright (c) 2016-2018 William Tumeo
+Modified work Copyright (c) 2018 Tom Rothamel
-Modified work Copyright (c) 2016 William Tumeo
Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
@@ -36,4 +37,4 @@ license, located in `README.mdown`:
Permission to copy, use, modify, sell and distribute this
software is granted. This software is provided "as is" without
express or implied warranty, and with no claim as to its
-suitability for any purpose.
+suitability for any purpose.
\ No newline at end of file
diff --git a/vendor/licenses/grammar/language-restructuredtext.txt b/vendor/licenses/grammar/language-restructuredtext.txt
index 81e4bb7d33..bff82a7ff2 100644
--- a/vendor/licenses/grammar/language-restructuredtext.txt
+++ b/vendor/licenses/grammar/language-restructuredtext.txt
@@ -1,11 +1,12 @@
---
type: grammar
name: language-restructuredtext
+version: 30706379beb55bf17b3404546e4e3dccff516b5d
license: mit
---
MIT License
-Copyright (c) 2014-2016 Cory Benfield
+Copyright (c) 2014-2017 Cory Benfield
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
@@ -24,3 +25,9 @@ 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.
+
+--------------------------------------------------------------------------------
+This package would not exist without the great work of the following people:
+
+- Kyle Kelley (@rgbkrk)
+- Ash Wilson (@smashwilson)
\ No newline at end of file
diff --git a/vendor/licenses/grammar/language-ring.txt b/vendor/licenses/grammar/language-ring.txt
index e7cd9ab34d..203bb0f33b 100644
--- a/vendor/licenses/grammar/language-ring.txt
+++ b/vendor/licenses/grammar/language-ring.txt
@@ -1,26 +1,26 @@
---
type: grammar
name: language-ring
+version: 45f3bb0af7ce72b21cc5545673878255d720ab6c
license: mit
---
-The MIT License (MIT)
+Copyright (c) 2016 Mahmoud Fayed
-Copyright (c) 2016-2017 Mahmoud Fayed
+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:
-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 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.
+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/vendor/licenses/grammar/language-roff.txt b/vendor/licenses/grammar/language-roff.txt
index 0bb79d8075..feee0f3dea 100644
--- a/vendor/licenses/grammar/language-roff.txt
+++ b/vendor/licenses/grammar/language-roff.txt
@@ -1,9 +1,10 @@
---
type: grammar
name: language-roff
+version: 97969e7a96a78c2f9405deb71d1ec1cdf2a06e5f
license: isc
---
-Copyright (c) 2016, John Gardner
+Copyright (c) 2016-2018, John Gardner
Permission to use, copy, modify, and/or distribute this software for any
purpose with or without fee is hereby granted, provided that the above
@@ -15,4 +16,4 @@ MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
-OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
+OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
\ No newline at end of file
diff --git a/vendor/licenses/grammar/language-rpm-spec.txt b/vendor/licenses/grammar/language-rpm-spec.txt
index 533fb6fa81..e31066c0ec 100644
--- a/vendor/licenses/grammar/language-rpm-spec.txt
+++ b/vendor/licenses/grammar/language-rpm-spec.txt
@@ -1,9 +1,10 @@
---
type: grammar
name: language-rpm-spec
+version: bb32491b3754c6955a48912c35311c27b2a675f0
license: mit
---
-Copyright (c) 2015 Jeremiah Powell
+Copyright (c) 2015-2017 Jeremiah Powell
Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
@@ -22,4 +23,4 @@ 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.
+WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
\ No newline at end of file
diff --git a/vendor/licenses/grammar/language-ruby.txt b/vendor/licenses/grammar/language-ruby.txt
index 726e348d11..62fe72bf30 100644
--- a/vendor/licenses/grammar/language-ruby.txt
+++ b/vendor/licenses/grammar/language-ruby.txt
@@ -1,6 +1,7 @@
---
type: grammar
name: language-ruby
+version: fd7d1fce34537546e4279276c8f80323d7b33dc1
license: mit
---
Copyright (c) 2014 GitHub Inc.
@@ -33,4 +34,4 @@ license, located in `README.mdown`:
Permission to copy, use, modify, sell and distribute this
software is granted. This software is provided "as is" without
express or implied warranty, and with no claim as to its
-suitability for any purpose.
+suitability for any purpose.
\ No newline at end of file
diff --git a/vendor/licenses/grammar/language-sed.txt b/vendor/licenses/grammar/language-sed.txt
index af4b066b8e..557a934d43 100644
--- a/vendor/licenses/grammar/language-sed.txt
+++ b/vendor/licenses/grammar/language-sed.txt
@@ -1,6 +1,7 @@
---
type: grammar
name: language-sed
+version: f651f8bb9c69e78b274593928a66187d9ff666f0
license: isc
---
Copyright (c) 2018, John Gardner
@@ -15,4 +16,4 @@ MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
-OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
+OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
\ No newline at end of file
diff --git a/vendor/licenses/grammar/language-shellscript.txt b/vendor/licenses/grammar/language-shellscript.txt
index be9f95834b..39625038b0 100644
--- a/vendor/licenses/grammar/language-shellscript.txt
+++ b/vendor/licenses/grammar/language-shellscript.txt
@@ -1,6 +1,7 @@
---
type: grammar
name: language-shellscript
+version: fc42b81ce3a8d487ac9de4d6e963cd02d0e213f3
license: mit
---
Copyright (c) 2014 GitHub Inc.
@@ -33,4 +34,4 @@ following license, located in `README.mdown`:
Permission to copy, use, modify, sell and distribute this
software is granted. This software is provided "as is" without
express or implied warranty, and with no claim as to its
-suitability for any purpose.
+suitability for any purpose.
\ No newline at end of file
diff --git a/vendor/licenses/grammar/language-supercollider.txt b/vendor/licenses/grammar/language-supercollider.txt
index b495c284b6..bd5ed74d32 100644
--- a/vendor/licenses/grammar/language-supercollider.txt
+++ b/vendor/licenses/grammar/language-supercollider.txt
@@ -1,6 +1,7 @@
---
type: grammar
name: language-supercollider
+version: ca48d9b99eea4fbb12c0f60757f4558acdb6eca5
license: mit
---
The MIT License (MIT)
@@ -23,4 +24,4 @@ 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.
+SOFTWARE.
\ No newline at end of file
diff --git a/vendor/licenses/grammar/language-toc-wow.txt b/vendor/licenses/grammar/language-toc-wow.txt
index 970dc139e6..119f16efcd 100644
--- a/vendor/licenses/grammar/language-toc-wow.txt
+++ b/vendor/licenses/grammar/language-toc-wow.txt
@@ -1,25 +1,30 @@
---
type: grammar
name: language-toc-wow
-license: mit
+version: 03e7c2a02f2c3b2b0101929547768af5a88a7ddf
+license: unlicense
---
-Copyright (c) 2016 Kyle Buller
+This is free and unencumbered software released into the public domain.
-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:
+Anyone is free to copy, modify, publish, use, compile, sell, or
+distribute this software, either in source code form or as a compiled
+binary, for any purpose, commercial or non-commercial, and by any
+means.
-The above copyright notice and this permission notice shall be
-included in all copies or substantial portions of the Software.
+In jurisdictions that recognize copyright laws, the author or authors
+of this software dedicate any and all copyright interest in the
+software to the public domain. We make this dedication for the benefit
+of the public at large and to the detriment of our heirs and
+successors. We intend this dedication to be an overt act of
+relinquishment in perpetuity of all present and future rights to this
+software under copyright law.
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.
+MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
+IN NO EVENT SHALL THE AUTHORS 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.
+
+For more information, please refer to
\ No newline at end of file
diff --git a/vendor/licenses/grammar/language-turing.txt b/vendor/licenses/grammar/language-turing.txt
index 8c19ebe617..840885caac 100644
--- a/vendor/licenses/grammar/language-turing.txt
+++ b/vendor/licenses/grammar/language-turing.txt
@@ -1,6 +1,7 @@
---
type: grammar
name: language-turing
+version: b96a299fca6c07572ee4fb6b2fad2a27bf339c78
license: isc
---
Copyright (c) 2016, John Gardner
@@ -15,4 +16,4 @@ MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
-OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
+OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
\ No newline at end of file
diff --git a/vendor/licenses/grammar/language-typelanguage.txt b/vendor/licenses/grammar/language-typelanguage.txt
index 009dbe24f6..f52f80706a 100644
--- a/vendor/licenses/grammar/language-typelanguage.txt
+++ b/vendor/licenses/grammar/language-typelanguage.txt
@@ -1,35 +1,27 @@
---
type: grammar
name: language-typelanguage
+version: 815fb80bb308b25ac7f73122e671749146cae45d
license: mit
---
MIT License
Copyright (c) 2017 goodmind
-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
+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
+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
+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
+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.
+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/vendor/licenses/grammar/language-viml.txt b/vendor/licenses/grammar/language-viml.txt
index 0bb64e03c1..911adc1948 100644
--- a/vendor/licenses/grammar/language-viml.txt
+++ b/vendor/licenses/grammar/language-viml.txt
@@ -1,12 +1,13 @@
---
type: grammar
name: language-viml
+version: d154916de43cd5ca04d762ac9b8449a2273a7d37
license: mit
---
The MIT License (MIT)
Copyright (c) 2014-2016 Evan Hahn
-Copyright (c) 2016 John Gardner
+Copyright (c) 2016-2018 John Gardner
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
@@ -24,4 +25,4 @@ 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.
+THE SOFTWARE.
\ No newline at end of file
diff --git a/vendor/licenses/grammar/language-wavefront.txt b/vendor/licenses/grammar/language-wavefront.txt
index 2c2fe74342..04ba28d53b 100644
--- a/vendor/licenses/grammar/language-wavefront.txt
+++ b/vendor/licenses/grammar/language-wavefront.txt
@@ -1,6 +1,7 @@
---
type: grammar
name: language-wavefront
+version: ac1ef19761b52ce2cacb999a10990fd911268781
license: isc
---
Copyright (c) 2016, John Gardner
@@ -15,4 +16,4 @@ MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
-OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
+OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
\ No newline at end of file
diff --git a/vendor/licenses/grammar/language-webassembly.txt b/vendor/licenses/grammar/language-webassembly.txt
index 10f0d90dff..9eed365cf4 100644
--- a/vendor/licenses/grammar/language-webassembly.txt
+++ b/vendor/licenses/grammar/language-webassembly.txt
@@ -1,9 +1,10 @@
---
type: grammar
name: language-webassembly
+version: 78567cdf9b15b77bbac0d12848d1f2af7a01dc2b
license: isc
---
-Copyright (c) 2016-2017, John Gardner
+Copyright (c) 2017, John Gardner
Permission to use, copy, modify, and/or distribute this software for any
purpose with or without fee is hereby granted, provided that the above
@@ -15,4 +16,4 @@ MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
-OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
+OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
\ No newline at end of file
diff --git a/vendor/licenses/grammar/language-xbase.txt b/vendor/licenses/grammar/language-xbase.txt
index 6c5e26d9e3..b9ac43acc0 100644
--- a/vendor/licenses/grammar/language-xbase.txt
+++ b/vendor/licenses/grammar/language-xbase.txt
@@ -1,6 +1,7 @@
---
type: grammar
name: language-xbase
+version: deada68e573bfd623e79b3e3c96b920bdf9f1b6d
license: mit
---
Copyright (c) 2014
@@ -22,4 +23,4 @@ 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.
+WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
\ No newline at end of file
diff --git a/vendor/licenses/grammar/language-xcompose.txt b/vendor/licenses/grammar/language-xcompose.txt
index bdd40fa8d3..628a7d37de 100644
--- a/vendor/licenses/grammar/language-xcompose.txt
+++ b/vendor/licenses/grammar/language-xcompose.txt
@@ -1,6 +1,7 @@
---
type: grammar
name: language-xcompose
+version: 220ec42caae041405c828463185be1de6b41c53f
license: mit
---
The MIT License (MIT)
@@ -23,5 +24,4 @@ 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.
-
+SOFTWARE.
\ No newline at end of file
diff --git a/vendor/licenses/grammar/language-yaml.txt b/vendor/licenses/grammar/language-yaml.txt
index 94b1c853bc..e6226fe8f7 100644
--- a/vendor/licenses/grammar/language-yaml.txt
+++ b/vendor/licenses/grammar/language-yaml.txt
@@ -1,6 +1,7 @@
---
type: grammar
name: language-yaml
+version: f8d98ba7d651e3a8f15f8c5f13982e97c380835c
license: mit
---
Copyright (c) 2014 GitHub Inc.
@@ -33,4 +34,4 @@ license, located in `README.mdown`:
Permission to copy, use, modify, sell and distribute this
software is granted. This software is provided "as is" without
express or implied warranty, and with no claim as to its
-suitability for any purpose.
+suitability for any purpose.
\ No newline at end of file
diff --git a/vendor/licenses/grammar/language-yang.txt b/vendor/licenses/grammar/language-yang.txt
index fd7bdf6d8a..a75532ebef 100644
--- a/vendor/licenses/grammar/language-yang.txt
+++ b/vendor/licenses/grammar/language-yang.txt
@@ -1,6 +1,7 @@
---
type: grammar
name: language-yang
+version: c2d4a701d15e0ea7a1cef4f2fe4396b336504d7c
license: mit
---
Copyright (c) 2014 Ján Hajnár
@@ -22,4 +23,4 @@ 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.
+WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
\ No newline at end of file
diff --git a/vendor/licenses/grammar/language-yara.txt b/vendor/licenses/grammar/language-yara.txt
index 59e599a1cb..a4fc595cbb 100644
--- a/vendor/licenses/grammar/language-yara.txt
+++ b/vendor/licenses/grammar/language-yara.txt
@@ -1,11 +1,12 @@
---
type: grammar
name: language-yara
+version: 1093d3d528dce6b3c8362dfedfce978cf9979b1e
license: mit
---
The MIT License (MIT)
-Copyright (c) 2014-2016 Blacktop
+Copyright (c) 2014-2018 Blacktop
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
@@ -23,4 +24,4 @@ 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.
+SOFTWARE.
\ No newline at end of file
diff --git a/vendor/licenses/grammar/latex.tmbundle.txt b/vendor/licenses/grammar/latex.tmbundle.txt
index 2af0f5b235..dd8d2a550f 100644
--- a/vendor/licenses/grammar/latex.tmbundle.txt
+++ b/vendor/licenses/grammar/latex.tmbundle.txt
@@ -1,10 +1,9 @@
---
type: grammar
name: latex.tmbundle
+version: 5091f86a8854acd6226a2512d058c3b5ca210745
license: permissive
-curated: true
---
-
If not otherwise specified (see below), files in this repository fall under the following license:
Permission to copy, use, modify, sell and distribute this
@@ -12,4 +11,4 @@ If not otherwise specified (see below), files in this repository fall under the
express or implied warranty, and with no claim as to its
suitability for any purpose.
-An exception is made for files in readable text which contain their own license information, or files where an accompanying file exists (in the same directory) with a “-license” suffix added to the base-name name of the original file, and an extension of txt, html, or similar. For example “tidy” is accompanied by “tidy-license.txt”.
+An exception is made for files in readable text which contain their own license information, or files where an accompanying file exists (in the same directory) with a “-license” suffix added to the base-name name of the original file, and an extension of txt, html, or similar. For example “tidy” is accompanied by “tidy-license.txt”.
\ No newline at end of file
diff --git a/vendor/licenses/grammar/lilypond.tmbundle.txt b/vendor/licenses/grammar/lilypond.tmbundle.txt
index 155958fe37..aaeae032e8 100644
--- a/vendor/licenses/grammar/lilypond.tmbundle.txt
+++ b/vendor/licenses/grammar/lilypond.tmbundle.txt
@@ -1,10 +1,9 @@
---
type: grammar
name: lilypond.tmbundle
+version: b52e8205a8727576df7ae65f2726435eb731d066
license: permissive
-curated: true
---
-
If not otherwise specified (see below), files in this repository fall under the following license:
Permission to copy, use, modify, sell and distribute this
@@ -12,4 +11,4 @@ If not otherwise specified (see below), files in this repository fall under the
express or implied warranty, and with no claim as to its
suitability for any purpose.
-An exception is made for files in readable text which contain their own license information, or files where an accompanying file exists (in the same directory) with a “-license” suffix added to the base-name name of the original file, and an extension of txt, html, or similar. For example “tidy” is accompanied by “tidy-license.txt”.
+An exception is made for files in readable text which contain their own license information, or files where an accompanying file exists (in the same directory) with a “-license” suffix added to the base-name name of the original file, and an extension of txt, html, or similar. For example “tidy” is accompanied by “tidy-license.txt”.
\ No newline at end of file
diff --git a/vendor/licenses/grammar/liquid.tmbundle.txt b/vendor/licenses/grammar/liquid.tmbundle.txt
index 48003b2dac..ec7a7c8114 100644
--- a/vendor/licenses/grammar/liquid.tmbundle.txt
+++ b/vendor/licenses/grammar/liquid.tmbundle.txt
@@ -1,6 +1,7 @@
---
type: grammar
name: liquid.tmbundle
+version: c65939f11ad9a91b8c4660a357c36660e9a09e6c
license: mit
---
The MIT License (MIT)
@@ -23,4 +24,4 @@ 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.
+SOFTWARE.
\ No newline at end of file
diff --git a/vendor/licenses/grammar/lisp.tmbundle.txt b/vendor/licenses/grammar/lisp.tmbundle.txt
index 1bfec7a675..f5c4b444fd 100644
--- a/vendor/licenses/grammar/lisp.tmbundle.txt
+++ b/vendor/licenses/grammar/lisp.tmbundle.txt
@@ -1,10 +1,9 @@
---
type: grammar
name: lisp.tmbundle
+version: 6d116d77b6e3d6b04d863c558527008db482b48a
license: permissive
-curated: true
---
-
If not otherwise specified (see below), files in this repository fall under the following license:
Permission to copy, use, modify, sell and distribute this
@@ -12,4 +11,4 @@ If not otherwise specified (see below), files in this repository fall under the
express or implied warranty, and with no claim as to its
suitability for any purpose.
-An exception is made for files in readable text which contain their own license information, or files where an accompanying file exists (in the same directory) with a “-license” suffix added to the base-name name of the original file, and an extension of txt, html, or similar. For example “tidy” is accompanied by “tidy-license.txt”.
+An exception is made for files in readable text which contain their own license information, or files where an accompanying file exists (in the same directory) with a “-license” suffix added to the base-name name of the original file, and an extension of txt, html, or similar. For example “tidy” is accompanied by “tidy-license.txt”.
\ No newline at end of file
diff --git a/vendor/licenses/grammar/llvm.tmbundle.txt b/vendor/licenses/grammar/llvm.tmbundle.txt
index 3f5062c0f4..43c102a1b9 100644
--- a/vendor/licenses/grammar/llvm.tmbundle.txt
+++ b/vendor/licenses/grammar/llvm.tmbundle.txt
@@ -1,6 +1,7 @@
---
type: grammar
name: llvm.tmbundle
+version: 5db1a160f09b041777d1ed8f1a98a4386a363e38
license: mit
---
Copyright (c) 2013 Peter Zotov
@@ -24,4 +25,4 @@ 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.
+WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
\ No newline at end of file
diff --git a/vendor/licenses/grammar/logos.txt b/vendor/licenses/grammar/logos.txt
index 1ce23f9ff8..d585797e0a 100644
--- a/vendor/licenses/grammar/logos.txt
+++ b/vendor/licenses/grammar/logos.txt
@@ -1,6 +1,7 @@
---
type: grammar
name: logos
+version: e783d38b9ce09c147b00fee971d125a69b9ad96a
license: mit
---
The MIT License (MIT)
@@ -23,4 +24,4 @@ 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.
+SOFTWARE.
\ No newline at end of file
diff --git a/vendor/licenses/grammar/logtalk.tmbundle.txt b/vendor/licenses/grammar/logtalk.tmbundle.txt
index 2d7fcc6614..c80bd677f1 100644
--- a/vendor/licenses/grammar/logtalk.tmbundle.txt
+++ b/vendor/licenses/grammar/logtalk.tmbundle.txt
@@ -1,10 +1,9 @@
---
type: grammar
name: logtalk.tmbundle
+version: 571a1da1ff43e5e6a9f46279e65aa53bf6151013
license: permissive
-curated: true
---
-
If not otherwise specified (see below), files in this repository fall under the following license:
Permission to copy, use, modify, sell and distribute this
@@ -12,4 +11,4 @@ If not otherwise specified (see below), files in this repository fall under the
express or implied warranty, and with no claim as to its
suitability for any purpose.
-An exception is made for files in readable text which contain their own license information, or files where an accompanying file exists (in the same directory) with a “-license” suffix added to the base-name name of the original file, and an extension of txt, html, or similar. For example “tidy” is accompanied by “tidy-license.txt”.
+An exception is made for files in readable text which contain their own license information, or files where an accompanying file exists (in the same directory) with a “-license” suffix added to the base-name name of the original file, and an extension of txt, html, or similar. For example “tidy” is accompanied by “tidy-license.txt”.
\ No newline at end of file
diff --git a/vendor/licenses/grammar/lua.tmbundle.txt b/vendor/licenses/grammar/lua.tmbundle.txt
index 9acf78e588..1e0ca23751 100644
--- a/vendor/licenses/grammar/lua.tmbundle.txt
+++ b/vendor/licenses/grammar/lua.tmbundle.txt
@@ -1,10 +1,9 @@
---
type: grammar
name: lua.tmbundle
+version: 8ae5641365b28f697121ba1133890e8d81f5b00e
license: permissive
-curated: true
---
-
If not otherwise specified (see below), files in this repository fall under the following license:
Permission to copy, use, modify, sell and distribute this
@@ -12,4 +11,4 @@ If not otherwise specified (see below), files in this repository fall under the
express or implied warranty, and with no claim as to its
suitability for any purpose.
-An exception is made for files in readable text which contain their own license information, or files where an accompanying file exists (in the same directory) with a “-license” suffix added to the base-name name of the original file, and an extension of txt, html, or similar. For example “tidy” is accompanied by “tidy-license.txt”.
+An exception is made for files in readable text which contain their own license information, or files where an accompanying file exists (in the same directory) with a “-license” suffix added to the base-name name of the original file, and an extension of txt, html, or similar. For example “tidy” is accompanied by “tidy-license.txt”.
\ No newline at end of file
diff --git a/vendor/licenses/grammar/m3.txt b/vendor/licenses/grammar/m3.txt
index d306e87d27..85e97d8b61 100644
--- a/vendor/licenses/grammar/m3.txt
+++ b/vendor/licenses/grammar/m3.txt
@@ -1,6 +1,7 @@
---
type: grammar
name: m3
+version: 96887cce6a0134a41244790869d8e96168933c69
license: bsd-3-clause
---
BSD 3-Clause License
@@ -31,5 +32,4 @@ DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
-OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-
+OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
\ No newline at end of file
diff --git a/vendor/licenses/grammar/make.tmbundle.txt b/vendor/licenses/grammar/make.tmbundle.txt
index b7c77378c6..bd86e2b084 100644
--- a/vendor/licenses/grammar/make.tmbundle.txt
+++ b/vendor/licenses/grammar/make.tmbundle.txt
@@ -1,10 +1,9 @@
---
type: grammar
name: make.tmbundle
+version: '01069d2b38514f5d5d1519737f4be937566e195e'
license: permissive
-curated: true
---
-
If not otherwise specified (see below), files in this repository fall under the following license:
Permission to copy, use, modify, sell and distribute this
@@ -12,4 +11,4 @@ If not otherwise specified (see below), files in this repository fall under the
express or implied warranty, and with no claim as to its
suitability for any purpose.
-An exception is made for files in readable text which contain their own license information, or files where an accompanying file exists (in the same directory) with a “-license” suffix added to the base-name name of the original file, and an extension of txt, html, or similar. For example “tidy” is accompanied by “tidy-license.txt”.
+An exception is made for files in readable text which contain their own license information, or files where an accompanying file exists (in the same directory) with a “-license” suffix added to the base-name name of the original file, and an extension of txt, html, or similar. For example “tidy” is accompanied by “tidy-license.txt”.
\ No newline at end of file
diff --git a/vendor/licenses/grammar/mako-tmbundle.txt b/vendor/licenses/grammar/mako-tmbundle.txt
index 0ef8e50d44..5c27ebe0bd 100644
--- a/vendor/licenses/grammar/mako-tmbundle.txt
+++ b/vendor/licenses/grammar/mako-tmbundle.txt
@@ -1,6 +1,7 @@
---
type: grammar
name: mako-tmbundle
+version: 45037e4e98f0c215b55b194d303811d43b85407c
license: mit
---
This is the MIT license: http://www.opensource.org/licenses/mit-license.php
diff --git a/vendor/licenses/grammar/marko-tmbundle.txt b/vendor/licenses/grammar/marko-tmbundle.txt
index 72ed713b56..b0b0dccc11 100644
--- a/vendor/licenses/grammar/marko-tmbundle.txt
+++ b/vendor/licenses/grammar/marko-tmbundle.txt
@@ -1,6 +1,7 @@
---
type: grammar
name: marko-tmbundle
+version: ebc3f36f7a830d721e0ce12e391c8a7111348f68
license: mit
---
The MIT License (MIT)
@@ -22,4 +23,4 @@ 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.
+CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
\ No newline at end of file
diff --git a/vendor/licenses/grammar/mathematica-tmbundle.txt b/vendor/licenses/grammar/mathematica-tmbundle.txt
index aa602a6eb8..2a1c841e16 100644
--- a/vendor/licenses/grammar/mathematica-tmbundle.txt
+++ b/vendor/licenses/grammar/mathematica-tmbundle.txt
@@ -1,6 +1,7 @@
---
type: grammar
name: mathematica-tmbundle
+version: 3e8e3fe908c62101a5bf14b0a0df545005e67c99
license: apache-2.0
---
Apache License
@@ -203,4 +204,4 @@ Apache License
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
- limitations under the License.
+ limitations under the License.
\ No newline at end of file
diff --git a/vendor/licenses/grammar/matlab.tmbundle.txt b/vendor/licenses/grammar/matlab.tmbundle.txt
deleted file mode 100644
index 7d64e8e95a..0000000000
--- a/vendor/licenses/grammar/matlab.tmbundle.txt
+++ /dev/null
@@ -1,15 +0,0 @@
----
-type: grammar
-name: matlab.tmbundle
-license: permissive
-curated: true
----
-
-If not otherwise specified (see below), files in this repository fall under the following license:
-
- Permission to copy, use, modify, sell and distribute this
- software is granted. This software is provided "as is" without
- express or implied warranty, and with no claim as to its
- suitability for any purpose.
-
-An exception is made for files in readable text which contain their own license information, or files where an accompanying file exists (in the same directory) with a “-license” suffix added to the base-name name of the original file, and an extension of txt, html, or similar. For example “tidy” is accompanied by “tidy-license.txt”.
diff --git a/vendor/licenses/grammar/maven.tmbundle.txt b/vendor/licenses/grammar/maven.tmbundle.txt
index e574297fd3..9a09b4ee37 100644
--- a/vendor/licenses/grammar/maven.tmbundle.txt
+++ b/vendor/licenses/grammar/maven.tmbundle.txt
@@ -1,10 +1,9 @@
---
type: grammar
name: maven.tmbundle
+version: 180999aa43b2dbb3d3953f0196e766420ec34553
license: permissive
-curated: true
---
-
If not otherwise specified (see below), files in this repository fall under the following license:
Permission to copy, use, modify, sell and distribute this
@@ -12,4 +11,4 @@ If not otherwise specified (see below), files in this repository fall under the
express or implied warranty, and with no claim as to its
suitability for any purpose.
-An exception is made for files in readable text which contain their own license information, or files where an accompanying file exists (in the same directory) with a “-license” suffix added to the base-name name of the original file, and an extension of txt, html, or similar. For example “tidy” is accompanied by “tidy-license.txt”.
+An exception is made for files in readable text which contain their own license information, or files where an accompanying file exists (in the same directory) with a “-license” suffix added to the base-name name of the original file, and an extension of txt, html, or similar. For example “tidy” is accompanied by “tidy-license.txt”.
\ No newline at end of file
diff --git a/vendor/licenses/grammar/mediawiki.tmbundle.txt b/vendor/licenses/grammar/mediawiki.tmbundle.txt
index 01fac945a0..23029a6475 100644
--- a/vendor/licenses/grammar/mediawiki.tmbundle.txt
+++ b/vendor/licenses/grammar/mediawiki.tmbundle.txt
@@ -1,10 +1,9 @@
---
type: grammar
name: mediawiki.tmbundle
+version: 6974604d7e74bd5d7e262dfba839314b639d5a52
license: permissive
-curated: true
---
-
If not otherwise specified (see below), files in this repository fall under the following license:
Permission to copy, use, modify, sell and distribute this
@@ -12,4 +11,4 @@ If not otherwise specified (see below), files in this repository fall under the
express or implied warranty, and with no claim as to its
suitability for any purpose.
-An exception is made for files in readable text which contain their own license information, or files where an accompanying file exists (in the same directory) with a “-license” suffix added to the base-name name of the original file, and an extension of txt, html, or similar. For example “tidy” is accompanied by “tidy-license.txt”.
+An exception is made for files in readable text which contain their own license information, or files where an accompanying file exists (in the same directory) with a “-license” suffix added to the base-name name of the original file, and an extension of txt, html, or similar. For example “tidy” is accompanied by “tidy-license.txt”.
\ No newline at end of file
diff --git a/vendor/licenses/grammar/mercury-tmlanguage.txt b/vendor/licenses/grammar/mercury-tmlanguage.txt
index a0a547f6ef..bb1d401ece 100644
--- a/vendor/licenses/grammar/mercury-tmlanguage.txt
+++ b/vendor/licenses/grammar/mercury-tmlanguage.txt
@@ -1,6 +1,7 @@
---
type: grammar
name: mercury-tmlanguage
+version: cb57d42dbe343d3809c3dd7946f28f6354a2687e
license: mit
---
The MIT License (MIT)
@@ -23,4 +24,4 @@ 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.
+SOFTWARE.
\ No newline at end of file
diff --git a/vendor/licenses/grammar/monkey.txt b/vendor/licenses/grammar/monkey.txt
index 76c1fed451..7c03d5f564 100644
--- a/vendor/licenses/grammar/monkey.txt
+++ b/vendor/licenses/grammar/monkey.txt
@@ -1,7 +1,7 @@
---
type: grammar
name: monkey
+version: 3a323c057a963a32d1fe002f8b88ce98d6faff2c
license: mit
-curated: true
---
-monkey.tmbundle is made available under the [MIT License](http://choosealicense.com/licenses/mit/).
+monkey.tmbundle is made available under the [MIT License](http://choosealicense.com/licenses/mit/).
\ No newline at end of file
diff --git a/vendor/licenses/grammar/moonscript-tmbundle.txt b/vendor/licenses/grammar/moonscript-tmbundle.txt
index f59b34d270..df25ecf634 100644
--- a/vendor/licenses/grammar/moonscript-tmbundle.txt
+++ b/vendor/licenses/grammar/moonscript-tmbundle.txt
@@ -1,6 +1,7 @@
---
type: grammar
name: moonscript-tmbundle
+version: cf69300f2a38d4c585bef4c5ad8543f5e258de8d
license: mit
---
License (MIT)
@@ -11,4 +12,4 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of
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.
+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/vendor/licenses/grammar/nemerle.tmbundle.txt b/vendor/licenses/grammar/nemerle.tmbundle.txt
index 00831d533c..c409b43e84 100644
--- a/vendor/licenses/grammar/nemerle.tmbundle.txt
+++ b/vendor/licenses/grammar/nemerle.tmbundle.txt
@@ -1,10 +1,9 @@
---
type: grammar
name: nemerle.tmbundle
+version: 8311f0f019a58a2c154a81e2ea9d3f4ddeec1298
license: permissive
-curated: true
---
-
If not otherwise specified (see below), files in this repository fall under the following license:
Permission to copy, use, modify, sell and distribute this
@@ -12,4 +11,4 @@ If not otherwise specified (see below), files in this repository fall under the
express or implied warranty, and with no claim as to its
suitability for any purpose.
-An exception is made for files in readable text which contain their own license information, or files where an accompanying file exists (in the same directory) with a “-license” suffix added to the base-name name of the original file, and an extension of txt, html, or similar. For example “tidy” is accompanied by “tidy-license.txt”.
+An exception is made for files in readable text which contain their own license information, or files where an accompanying file exists (in the same directory) with a “-license” suffix added to the base-name name of the original file, and an extension of txt, html, or similar. For example “tidy” is accompanied by “tidy-license.txt”.
\ No newline at end of file
diff --git a/vendor/licenses/grammar/nesC.txt b/vendor/licenses/grammar/nesC.txt
index 608f288bad..5738e096af 100644
--- a/vendor/licenses/grammar/nesC.txt
+++ b/vendor/licenses/grammar/nesC.txt
@@ -1,6 +1,7 @@
---
type: grammar
name: nesC
+version: 573e09cd923ac05956f7892c7f9ce74e079d247d
license: mit
---
MIT License
@@ -23,4 +24,4 @@ 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.
+SOFTWARE.
\ No newline at end of file
diff --git a/vendor/licenses/grammar/nix.txt b/vendor/licenses/grammar/nix.txt
index 2dbe626447..038d0b271c 100644
--- a/vendor/licenses/grammar/nix.txt
+++ b/vendor/licenses/grammar/nix.txt
@@ -1,6 +1,7 @@
---
type: grammar
name: nix
+version: 867366e6d020c43bd967ebc50189a40d9f4adda1
license: mit
---
The MIT License (MIT)
@@ -10,4 +11,4 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of
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.
+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/vendor/licenses/grammar/nu.tmbundle.txt b/vendor/licenses/grammar/nu.tmbundle.txt
index 4aef7d8d20..7f1f99ac8a 100644
--- a/vendor/licenses/grammar/nu.tmbundle.txt
+++ b/vendor/licenses/grammar/nu.tmbundle.txt
@@ -1,6 +1,7 @@
---
type: grammar
name: nu.tmbundle
+version: 7beffd8cfc2542b43ebfabd66998d0fd503d1bb0
license: apache-2.0
---
@@ -204,4 +205,4 @@ Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
-limitations under the License.
+limitations under the License.
\ No newline at end of file
diff --git a/vendor/licenses/grammar/objective-c.tmbundle.txt b/vendor/licenses/grammar/objective-c.tmbundle.txt
index 507266770c..2452d02310 100644
--- a/vendor/licenses/grammar/objective-c.tmbundle.txt
+++ b/vendor/licenses/grammar/objective-c.tmbundle.txt
@@ -1,10 +1,9 @@
---
type: grammar
name: objective-c.tmbundle
+version: fb271290491fda66730f5dd90abd5c3787fb7c5e
license: permissive
-curated: true
---
-
If not otherwise specified (see below), files in this repository fall under the following license:
Permission to copy, use, modify, sell and distribute this
@@ -12,4 +11,4 @@ If not otherwise specified (see below), files in this repository fall under the
express or implied warranty, and with no claim as to its
suitability for any purpose.
-An exception is made for files in readable text which contain their own license information, or files where an accompanying file exists (in the same directory) with a “-license” suffix added to the base-name name of the original file, and an extension of txt, html, or similar. For example “tidy” is accompanied by “tidy-license.txt”.
+An exception is made for files in readable text which contain their own license information, or files where an accompanying file exists (in the same directory) with a “-license” suffix added to the base-name name of the original file, and an extension of txt, html, or similar. For example “tidy” is accompanied by “tidy-license.txt”.
\ No newline at end of file
diff --git a/vendor/licenses/grammar/ocaml.tmbundle.txt b/vendor/licenses/grammar/ocaml.tmbundle.txt
index e6a30d0a21..da912d2155 100644
--- a/vendor/licenses/grammar/ocaml.tmbundle.txt
+++ b/vendor/licenses/grammar/ocaml.tmbundle.txt
@@ -1,10 +1,9 @@
---
type: grammar
name: ocaml.tmbundle
+version: 8158940052861bcf90c28f343dff2c50ab440b3f
license: permissive
-curated: true
---
-
If not otherwise specified (see below), files in this repository fall under the following license:
Permission to copy, use, modify, sell and distribute this
@@ -12,4 +11,4 @@ If not otherwise specified (see below), files in this repository fall under the
express or implied warranty, and with no claim as to its
suitability for any purpose.
-An exception is made for files in readable text which contain their own license information, or files where an accompanying file exists (in the same directory) with a “-license” suffix added to the base-name name of the original file, and an extension of txt, html, or similar. For example “tidy” is accompanied by “tidy-license.txt”.
+An exception is made for files in readable text which contain their own license information, or files where an accompanying file exists (in the same directory) with a “-license” suffix added to the base-name name of the original file, and an extension of txt, html, or similar. For example “tidy” is accompanied by “tidy-license.txt”.
\ No newline at end of file
diff --git a/vendor/licenses/grammar/ooc.tmbundle.txt b/vendor/licenses/grammar/ooc.tmbundle.txt
index 5046515d92..e0945ec5aa 100644
--- a/vendor/licenses/grammar/ooc.tmbundle.txt
+++ b/vendor/licenses/grammar/ooc.tmbundle.txt
@@ -1,6 +1,7 @@
---
type: grammar
name: ooc.tmbundle
+version: ff03f615b33e9a6266b43ca2a70dacffe21f0505
license: bsd-2-clause
---
Copyright (c) 2009-2010, 2014 Noel Cower, Mark Fayngersh.
@@ -25,3 +26,27 @@ LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+
+--------------------------------------------------------------------------------
+Copyright (c) 2009-2010, 2014 Noel Cower, Mark Fayngersh.
+All rights reserved.
+
+Redistribution and use in source and binary forms, with or without
+modification, are permitted provided that the following conditions are met:
+
+1. Redistributions of source code must retain the above copyright notice, this
+ list of conditions and the following disclaimer.
+2. Redistributions in binary form must reproduce the above copyright notice,
+ this list of conditions and the following disclaimer in the documentation
+ and/or other materials provided with the distribution.
+
+THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
+ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
+WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
+DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR
+ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
+(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
+LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
+ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
+(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
+SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
\ No newline at end of file
diff --git a/vendor/licenses/grammar/opa.tmbundle.txt b/vendor/licenses/grammar/opa.tmbundle.txt
index e72775874a..52dfe1c078 100644
--- a/vendor/licenses/grammar/opa.tmbundle.txt
+++ b/vendor/licenses/grammar/opa.tmbundle.txt
@@ -1,6 +1,7 @@
---
type: grammar
name: opa.tmbundle
+version: 10469a86c13a9aaf8c9580a770263242961f9469
license: mit
---
Copyright (c) 2014 Mads Hartmann Jensen
@@ -23,4 +24,4 @@ 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.
+SOFTWARE.
\ No newline at end of file
diff --git a/vendor/licenses/grammar/openscad.tmbundle.txt b/vendor/licenses/grammar/openscad.tmbundle.txt
index 466bbdc217..3991febe9c 100644
--- a/vendor/licenses/grammar/openscad.tmbundle.txt
+++ b/vendor/licenses/grammar/openscad.tmbundle.txt
@@ -1,6 +1,7 @@
---
type: grammar
name: openscad.tmbundle
+version: 5962175ed355c2d58dc1991801c229809363e999
license: mit
---
Copyright (c) 2017 Tony Buser
@@ -22,4 +23,4 @@ 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.
+WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
\ No newline at end of file
diff --git a/vendor/licenses/grammar/oz-tmbundle.txt b/vendor/licenses/grammar/oz-tmbundle.txt
index 6bab3d7eb0..05e72ad088 100644
--- a/vendor/licenses/grammar/oz-tmbundle.txt
+++ b/vendor/licenses/grammar/oz-tmbundle.txt
@@ -1,6 +1,7 @@
---
type: grammar
name: oz-tmbundle
+version: ae97a56fadad87b07b5ab8fa869f478844559825
license: mit
---
Copyright (c) 2010 Benoit Daloze
@@ -21,4 +22,4 @@ 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.
+THE SOFTWARE.
\ No newline at end of file
diff --git a/vendor/licenses/grammar/parrot.txt b/vendor/licenses/grammar/parrot.txt
index 4175c715c3..332ce5b63e 100644
--- a/vendor/licenses/grammar/parrot.txt
+++ b/vendor/licenses/grammar/parrot.txt
@@ -1,8 +1,8 @@
---
type: grammar
name: parrot
+version: b56e84139f2a8b75aa199a990d340b9a0463de16
license: permissive
-curated: true
---
If not otherwise specified (see below), files in this repository fall under the following license:
@@ -11,4 +11,4 @@ If not otherwise specified (see below), files in this repository fall under the
express or implied warranty, and with no claim as to its
suitability for any purpose.
-An exception is made for files in readable text which contain their own license information, or files where an accompanying file exists (in the same directory) with a “-license” suffix added to the base-name name of the original file, and an extension of txt, html, or similar. For example “tidy” is accompanied by “tidy-license.txt”.
+An exception is made for files in readable text which contain their own license information, or files where an accompanying file exists (in the same directory) with a “-license” suffix added to the base-name name of the original file, and an extension of txt, html, or similar. For example “tidy” is accompanied by “tidy-license.txt”.
\ No newline at end of file
diff --git a/vendor/licenses/grammar/pascal.tmbundle.txt b/vendor/licenses/grammar/pascal.tmbundle.txt
index 72b1a6cedf..f380c2619d 100644
--- a/vendor/licenses/grammar/pascal.tmbundle.txt
+++ b/vendor/licenses/grammar/pascal.tmbundle.txt
@@ -1,10 +1,9 @@
---
type: grammar
name: pascal.tmbundle
+version: 3b11b782368065e55acce0423f385722771d28b0
license: permissive
-curated: true
---
-
If not otherwise specified (see below), files in this repository fall under the following license:
Permission to copy, use, modify, sell and distribute this
@@ -12,4 +11,4 @@ If not otherwise specified (see below), files in this repository fall under the
express or implied warranty, and with no claim as to its
suitability for any purpose.
-An exception is made for files in readable text which contain their own license information, or files where an accompanying file exists (in the same directory) with a “-license” suffix added to the base-name name of the original file, and an extension of txt, html, or similar. For example “tidy” is accompanied by “tidy-license.txt”.
+An exception is made for files in readable text which contain their own license information, or files where an accompanying file exists (in the same directory) with a “-license” suffix added to the base-name name of the original file, and an extension of txt, html, or similar. For example “tidy” is accompanied by “tidy-license.txt”.
\ No newline at end of file
diff --git a/vendor/licenses/grammar/pawn-sublime-language.txt b/vendor/licenses/grammar/pawn-sublime-language.txt
index 1ce021389f..dd5ae0ad0e 100644
--- a/vendor/licenses/grammar/pawn-sublime-language.txt
+++ b/vendor/licenses/grammar/pawn-sublime-language.txt
@@ -1,6 +1,7 @@
---
type: grammar
name: pawn-sublime-language
+version: b83dab341b1da7af10937a61d49349009c30f1ee
license: mit
---
The MIT License (MIT)
@@ -23,4 +24,4 @@ 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.
+SOFTWARE.
\ No newline at end of file
diff --git a/vendor/licenses/grammar/perl.tmbundle.txt b/vendor/licenses/grammar/perl.tmbundle.txt
index 15bf446f9b..1fc093084c 100644
--- a/vendor/licenses/grammar/perl.tmbundle.txt
+++ b/vendor/licenses/grammar/perl.tmbundle.txt
@@ -1,10 +1,9 @@
---
type: grammar
name: perl.tmbundle
+version: 80826abe75250286c2a1a07958e50e8551d3f50c
license: permissive
-curated: true
---
-
If not otherwise specified (see below), files in this repository fall under the following license:
Permission to copy, use, modify, sell and distribute this
@@ -12,4 +11,4 @@ If not otherwise specified (see below), files in this repository fall under the
express or implied warranty, and with no claim as to its
suitability for any purpose.
-An exception is made for files in readable text which contain their own license information, or files where an accompanying file exists (in the same directory) with a “-license” suffix added to the base-name name of the original file, and an extension of txt, html, or similar. For example “tidy” is accompanied by “tidy-license.txt”.
+An exception is made for files in readable text which contain their own license information, or files where an accompanying file exists (in the same directory) with a “-license” suffix added to the base-name name of the original file, and an extension of txt, html, or similar. For example “tidy” is accompanied by “tidy-license.txt”.
\ No newline at end of file
diff --git a/vendor/licenses/grammar/php-smarty.tmbundle.txt b/vendor/licenses/grammar/php-smarty.tmbundle.txt
index da92fd4219..f0981b00b7 100644
--- a/vendor/licenses/grammar/php-smarty.tmbundle.txt
+++ b/vendor/licenses/grammar/php-smarty.tmbundle.txt
@@ -1,10 +1,9 @@
---
type: grammar
name: php-smarty.tmbundle
+version: 3888046662241e02f1a7a39eb14bc4844acc082e
license: permissive
-curated: true
---
-
If not otherwise specified (see below), files in this repository fall under the following license:
Permission to copy, use, modify, sell and distribute this
@@ -12,4 +11,4 @@ If not otherwise specified (see below), files in this repository fall under the
express or implied warranty, and with no claim as to its
suitability for any purpose.
-An exception is made for files in readable text which contain their own license information, or files where an accompanying file exists (in the same directory) with a “-license” suffix added to the base-name name of the original file, and an extension of txt, html, or similar. For example “tidy” is accompanied by “tidy-license.txt”.
+An exception is made for files in readable text which contain their own license information, or files where an accompanying file exists (in the same directory) with a “-license” suffix added to the base-name name of the original file, and an extension of txt, html, or similar. For example “tidy” is accompanied by “tidy-license.txt”.
\ No newline at end of file
diff --git a/vendor/licenses/grammar/php.tmbundle.txt b/vendor/licenses/grammar/php.tmbundle.txt
index 94613c0607..890637982e 100644
--- a/vendor/licenses/grammar/php.tmbundle.txt
+++ b/vendor/licenses/grammar/php.tmbundle.txt
@@ -1,10 +1,9 @@
---
type: grammar
name: php.tmbundle
+version: 8f05764681d51cd0b13db1e36810d74913c86bfc
license: permissive
-curated: true
---
-
If not otherwise specified (see below), files in this repository fall under the following license:
Permission to copy, use, modify, sell and distribute this
@@ -12,4 +11,4 @@ If not otherwise specified (see below), files in this repository fall under the
express or implied warranty, and with no claim as to its
suitability for any purpose.
-An exception is made for files in readable text which contain their own license information, or files where an accompanying file exists (in the same directory) with a “-license” suffix added to the base-name name of the original file, and an extension of txt, html, or similar. For example “tidy” is accompanied by “tidy-license.txt”.
+An exception is made for files in readable text which contain their own license information, or files where an accompanying file exists (in the same directory) with a “-license” suffix added to the base-name name of the original file, and an extension of txt, html, or similar. For example “tidy” is accompanied by “tidy-license.txt”.
\ No newline at end of file
diff --git a/vendor/licenses/grammar/pig-latin.txt b/vendor/licenses/grammar/pig-latin.txt
index 29118b68f0..33c127e336 100644
--- a/vendor/licenses/grammar/pig-latin.txt
+++ b/vendor/licenses/grammar/pig-latin.txt
@@ -1,6 +1,7 @@
---
type: grammar
name: pig-latin
+version: 655bd8b1887d040fe7a0c691c6aa10c279a758b2
license: mit
---
The MIT License (MIT)
@@ -23,4 +24,4 @@ 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.
+SOFTWARE.
\ No newline at end of file
diff --git a/vendor/licenses/grammar/pike-textmate.txt b/vendor/licenses/grammar/pike-textmate.txt
index f4c78b5680..d022f3f839 100644
--- a/vendor/licenses/grammar/pike-textmate.txt
+++ b/vendor/licenses/grammar/pike-textmate.txt
@@ -1,6 +1,7 @@
---
type: grammar
name: pike-textmate
+version: 96870efc1f1c2f489ec5ac8b73eaf33aa7517ac9
license: unlicense
---
This is free and unencumbered software released into the public domain.
@@ -27,3 +28,29 @@ ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
OTHER DEALINGS IN THE SOFTWARE.
For more information, please refer to
+
+--------------------------------------------------------------------------------
+This is free and unencumbered software released into the public domain.
+
+Anyone is free to copy, modify, publish, use, compile, sell, or
+distribute this software, either in source code form or as a compiled
+binary, for any purpose, commercial or non-commercial, and by any
+means.
+
+In jurisdictions that recognize copyright laws, the author or authors
+of this software dedicate any and all copyright interest in the
+software to the public domain. We make this dedication for the benefit
+of the public at large and to the detriment of our heirs and
+successors. We intend this dedication to be an overt act of
+relinquishment in perpetuity of all present and future rights to this
+software under copyright law.
+
+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 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.
+
+For more information, please refer to
\ No newline at end of file
diff --git a/vendor/licenses/grammar/postscript.tmbundle.txt b/vendor/licenses/grammar/postscript.tmbundle.txt
index 68876a0f1f..f1ab6ba230 100644
--- a/vendor/licenses/grammar/postscript.tmbundle.txt
+++ b/vendor/licenses/grammar/postscript.tmbundle.txt
@@ -1,10 +1,9 @@
---
type: grammar
name: postscript.tmbundle
+version: d0431d9562e295a2ed6e02ed14a60daa1eb8aa07
license: permissive
-curated: true
---
-
If not otherwise specified (see below), files in this repository fall under the following license:
Permission to copy, use, modify, sell and distribute this
@@ -12,4 +11,4 @@ If not otherwise specified (see below), files in this repository fall under the
express or implied warranty, and with no claim as to its
suitability for any purpose.
-An exception is made for files in readable text which contain their own license information, or files where an accompanying file exists (in the same directory) with a “-license” suffix added to the base-name name of the original file, and an extension of txt, html, or similar. For example “tidy” is accompanied by “tidy-license.txt”.
+An exception is made for files in readable text which contain their own license information, or files where an accompanying file exists (in the same directory) with a “-license” suffix added to the base-name name of the original file, and an extension of txt, html, or similar. For example “tidy” is accompanied by “tidy-license.txt”.
\ No newline at end of file
diff --git a/vendor/licenses/grammar/powershell.txt b/vendor/licenses/grammar/powershell.txt
index 5cc6c0b7af..28e5bba511 100644
--- a/vendor/licenses/grammar/powershell.txt
+++ b/vendor/licenses/grammar/powershell.txt
@@ -1,12 +1,29 @@
---
type: grammar
name: powershell
+version: 472c9447da4e3160bef211d5e1a0c2dee3cce497
license: mit
---
-Copyright (c) 2011 Guillermo López-Anglada
-
-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.
+Copyright (c) Microsoft Corporation
+
+All rights reserved.
+
+MIT License
+
+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/vendor/licenses/grammar/processing.tmbundle.txt b/vendor/licenses/grammar/processing.tmbundle.txt
index e01deabcae..310d700acd 100644
--- a/vendor/licenses/grammar/processing.tmbundle.txt
+++ b/vendor/licenses/grammar/processing.tmbundle.txt
@@ -1,10 +1,9 @@
---
type: grammar
name: processing.tmbundle
+version: 214b3420f12d65b125e82dc039d580326257f71b
license: permissive
-curated: true
---
-
If not otherwise specified (see below), files in this repository fall under the following license:
Permission to copy, use, modify, sell and distribute this
@@ -12,4 +11,4 @@ If not otherwise specified (see below), files in this repository fall under the
express or implied warranty, and with no claim as to its
suitability for any purpose.
-An exception is made for files in readable text which contain their own license information, or files where an accompanying file exists (in the same directory) with a “-license” suffix added to the base-name name of the original file, and an extension of txt, html, or similar. For example “tidy” is accompanied by “tidy-license.txt”.
+An exception is made for files in readable text which contain their own license information, or files where an accompanying file exists (in the same directory) with a “-license” suffix added to the base-name name of the original file, and an extension of txt, html, or similar. For example “tidy” is accompanied by “tidy-license.txt”.
\ No newline at end of file
diff --git a/vendor/licenses/grammar/protobuf-tmbundle.txt b/vendor/licenses/grammar/protobuf-tmbundle.txt
index ab3af85dcb..a2dbf25a11 100644
--- a/vendor/licenses/grammar/protobuf-tmbundle.txt
+++ b/vendor/licenses/grammar/protobuf-tmbundle.txt
@@ -1,6 +1,7 @@
---
type: grammar
name: protobuf-tmbundle
+version: 7a696473c6bcd28f3d3085a927ec6c39147e87ca
license: mit
---
Copyright (c) 2009 Michael Edgar
diff --git a/vendor/licenses/grammar/python-django.tmbundle.txt b/vendor/licenses/grammar/python-django.tmbundle.txt
index 8ac0418ded..39e05f0689 100644
--- a/vendor/licenses/grammar/python-django.tmbundle.txt
+++ b/vendor/licenses/grammar/python-django.tmbundle.txt
@@ -1,10 +1,9 @@
---
type: grammar
name: python-django.tmbundle
+version: 81d1395950ffb66e689e41863fab9a4f7cc5f30e
license: permissive
-curated: true
---
-
If not otherwise specified (see below), files in this repository fall under the following license:
Permission to copy, use, modify, sell and distribute this
@@ -12,4 +11,4 @@ If not otherwise specified (see below), files in this repository fall under the
express or implied warranty, and with no claim as to its
suitability for any purpose.
-An exception is made for files in readable text which contain their own license information, or files where an accompanying file exists (in the same directory) with a “-license” suffix added to the base-name name of the original file, and an extension of txt, html, or similar. For example “tidy” is accompanied by “tidy-license.txt”.
+An exception is made for files in readable text which contain their own license information, or files where an accompanying file exists (in the same directory) with a “-license” suffix added to the base-name name of the original file, and an extension of txt, html, or similar. For example “tidy” is accompanied by “tidy-license.txt”.
\ No newline at end of file
diff --git a/vendor/licenses/grammar/quake.txt b/vendor/licenses/grammar/quake.txt
index a7fa1578bd..664f164097 100644
--- a/vendor/licenses/grammar/quake.txt
+++ b/vendor/licenses/grammar/quake.txt
@@ -1,6 +1,7 @@
---
type: grammar
name: quake
+version: 7bbb0de4ac7b903f540d5aca8b675952ea3e7e64
license: bsd-3-clause
---
BSD 3-Clause License
@@ -31,4 +32,4 @@ DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
-OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
\ No newline at end of file
diff --git a/vendor/licenses/grammar/r.tmbundle.txt b/vendor/licenses/grammar/r.tmbundle.txt
index 37e5dc649a..5e9b12f4c8 100644
--- a/vendor/licenses/grammar/r.tmbundle.txt
+++ b/vendor/licenses/grammar/r.tmbundle.txt
@@ -1,13 +1,12 @@
---
type: grammar
name: r.tmbundle
+version: d005a0f1055020757b797e4959d1b43ece3708aa
license: permissive
-curated: true
---
-
If not otherwise specified (see below), files in this repository fall under the following license:
Permission to copy, use, modify, sell and distribute this
software is granted. This software is provided "as is" without
express or implied warranty, and with no claim as to its
- suitability for any purpose.
+ suitability for any purpose.
\ No newline at end of file
diff --git a/vendor/licenses/grammar/rascal-syntax-highlighting.txt b/vendor/licenses/grammar/rascal-syntax-highlighting.txt
index 5506b61b3d..c407e3a504 100644
--- a/vendor/licenses/grammar/rascal-syntax-highlighting.txt
+++ b/vendor/licenses/grammar/rascal-syntax-highlighting.txt
@@ -1,6 +1,7 @@
---
type: grammar
name: rascal-syntax-highlighting
+version: d544dc2386a5a643446e7ec1f5fef54874c4e9b4
license: bsd-2-clause
---
BSD 2-Clause License
@@ -27,4 +28,4 @@ DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
-OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
\ No newline at end of file
diff --git a/vendor/licenses/grammar/ruby-slim.tmbundle.txt b/vendor/licenses/grammar/ruby-slim.tmbundle.txt
index 0d59dd9139..d07d6e4db1 100644
--- a/vendor/licenses/grammar/ruby-slim.tmbundle.txt
+++ b/vendor/licenses/grammar/ruby-slim.tmbundle.txt
@@ -1,6 +1,7 @@
---
type: grammar
name: ruby-slim.tmbundle
+version: 05c369169c444f11f7605d342d529c6fe8797d34
license: mit
---
The MIT License
@@ -23,4 +24,4 @@ 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.
+THE SOFTWARE.
\ No newline at end of file
diff --git a/vendor/licenses/grammar/sas.tmbundle.txt b/vendor/licenses/grammar/sas.tmbundle.txt
index f4ec226bb8..894e29799e 100644
--- a/vendor/licenses/grammar/sas.tmbundle.txt
+++ b/vendor/licenses/grammar/sas.tmbundle.txt
@@ -1,6 +1,7 @@
---
type: grammar
name: sas.tmbundle
+version: 70755e5b31e107edd9f4ebc236f3685d49c51c5a
license: mit
---
The MIT License (MIT)
@@ -23,4 +24,10 @@ 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
+SOFTWARE.
+--------------------------------------------------------------------------------
+Contributors in the order of first contribution
+
+* [Jakob Stoeck](https://github.com/jakob-stoeck)
+* [Roy Pardee](https://github.com/rpardee)
+* [Matthew Kastin aka FriedEgg](https://github.com/FriedEgg)
\ No newline at end of file
diff --git a/vendor/licenses/grammar/sass-textmate-bundle.txt b/vendor/licenses/grammar/sass-textmate-bundle.txt
index fb3e4d9ccd..58001c0716 100644
--- a/vendor/licenses/grammar/sass-textmate-bundle.txt
+++ b/vendor/licenses/grammar/sass-textmate-bundle.txt
@@ -1,6 +1,7 @@
---
type: grammar
name: sass-textmate-bundle
+version: 0a6e6dfa6f34a33608d89ac75b86c60c3a761a84
license: mit
---
The MIT License (MIT)
@@ -23,4 +24,4 @@ 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.
+SOFTWARE.
\ No newline at end of file
diff --git a/vendor/licenses/grammar/scala.tmbundle.txt b/vendor/licenses/grammar/scala.tmbundle.txt
deleted file mode 100644
index 299a707158..0000000000
--- a/vendor/licenses/grammar/scala.tmbundle.txt
+++ /dev/null
@@ -1,26 +0,0 @@
----
-type: grammar
-name: scala.tmbundle
-license: mit
----
-Copyright (c) 2014 Mads Hartmann Jensen
-
-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.
diff --git a/vendor/licenses/grammar/scheme.tmbundle.txt b/vendor/licenses/grammar/scheme.tmbundle.txt
index bc1e2e5024..765cfd3285 100644
--- a/vendor/licenses/grammar/scheme.tmbundle.txt
+++ b/vendor/licenses/grammar/scheme.tmbundle.txt
@@ -1,10 +1,9 @@
---
type: grammar
name: scheme.tmbundle
+version: 4c21b46583ef6e8adcfd09b417bbdd9579c6a4eb
license: permissive
-curated: true
---
-
If not otherwise specified (see below), files in this repository fall under the following license:
Permission to copy, use, modify, sell and distribute this
@@ -12,4 +11,4 @@ If not otherwise specified (see below), files in this repository fall under the
express or implied warranty, and with no claim as to its
suitability for any purpose.
-An exception is made for files in readable text which contain their own license information, or files where an accompanying file exists (in the same directory) with a “-license” suffix added to the base-name name of the original file, and an extension of txt, html, or similar. For example “tidy” is accompanied by “tidy-license.txt”.
+An exception is made for files in readable text which contain their own license information, or files where an accompanying file exists (in the same directory) with a “-license” suffix added to the base-name name of the original file, and an extension of txt, html, or similar. For example “tidy” is accompanied by “tidy-license.txt”.
\ No newline at end of file
diff --git a/vendor/licenses/grammar/scilab.tmbundle.txt b/vendor/licenses/grammar/scilab.tmbundle.txt
index f92e2d012e..875f4ca738 100644
--- a/vendor/licenses/grammar/scilab.tmbundle.txt
+++ b/vendor/licenses/grammar/scilab.tmbundle.txt
@@ -1,10 +1,9 @@
---
type: grammar
name: scilab.tmbundle
+version: 629ea8bd1a30890cdfa35f1566137bd773cce948
license: permissive
-curated: true
---
-
If not otherwise specified (see below), files in this repository fall under the following license:
Permission to copy, use, modify, sell and distribute this
@@ -12,4 +11,4 @@ If not otherwise specified (see below), files in this repository fall under the
express or implied warranty, and with no claim as to its
suitability for any purpose.
-An exception is made for files in readable text which contain their own license information, or files where an accompanying file exists (in the same directory) with a “-license” suffix added to the base-name name of the original file, and an extension of txt, html, or similar. For example “tidy” is accompanied by “tidy-license.txt”.
+An exception is made for files in readable text which contain their own license information, or files where an accompanying file exists (in the same directory) with a “-license” suffix added to the base-name name of the original file, and an extension of txt, html, or similar. For example “tidy” is accompanied by “tidy-license.txt”.
\ No newline at end of file
diff --git a/vendor/licenses/grammar/secondlife-lsl.txt b/vendor/licenses/grammar/secondlife-lsl.txt
index cf255ab9ba..411999277b 100644
--- a/vendor/licenses/grammar/secondlife-lsl.txt
+++ b/vendor/licenses/grammar/secondlife-lsl.txt
@@ -1,8 +1,8 @@
---
type: grammar
name: secondlife-lsl
+version: 0d7fb8982d5fe6b1f7065dfbfe42d6e9eaf02251
license: permissive
-curated: true
---
If not otherwise specified (see below), files in this repository fall under the following license:
@@ -11,4 +11,4 @@ If not otherwise specified (see below), files in this repository fall under the
express or implied warranty, and with no claim as to its
suitability for any purpose.
-An exception is made for files in readable text which contain their own license information, or files where an accompanying file exists (in the same directory) with a “-license” suffix added to the base-name name of the original file, and an extension of txt, html, or similar. For example “tidy” is accompanied by “tidy-license.txt”.
+An exception is made for files in readable text which contain their own license information, or files where an accompanying file exists (in the same directory) with a “-license” suffix added to the base-name name of the original file, and an extension of txt, html, or similar. For example “tidy” is accompanied by “tidy-license.txt”.
\ No newline at end of file
diff --git a/vendor/licenses/grammar/shaders-tmLanguage.txt b/vendor/licenses/grammar/shaders-tmLanguage.txt
index 1c1ee0cd07..fcb46db33e 100644
--- a/vendor/licenses/grammar/shaders-tmLanguage.txt
+++ b/vendor/licenses/grammar/shaders-tmLanguage.txt
@@ -1,6 +1,7 @@
---
type: grammar
name: shaders-tmLanguage
+version: c72c8b39380ba5a86c58ceed053b5d965ebf38b3
license: mit
---
MIT License
@@ -23,4 +24,4 @@ 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.
+SOFTWARE.
\ No newline at end of file
diff --git a/vendor/licenses/grammar/smali-sublime.txt b/vendor/licenses/grammar/smali-sublime.txt
index 56092a55f6..dde953b74d 100644
--- a/vendor/licenses/grammar/smali-sublime.txt
+++ b/vendor/licenses/grammar/smali-sublime.txt
@@ -1,6 +1,7 @@
---
type: grammar
name: smali-sublime
+version: 5bcea806cf69a6ebce799b0995bdfd4d7865989e
license: mit
---
The MIT License (MIT)
@@ -23,4 +24,4 @@ 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.
+SOFTWARE.
\ No newline at end of file
diff --git a/vendor/licenses/grammar/smalltalk-tmbundle.txt b/vendor/licenses/grammar/smalltalk-tmbundle.txt
index 78ffc1b9ee..44a9af5a45 100644
--- a/vendor/licenses/grammar/smalltalk-tmbundle.txt
+++ b/vendor/licenses/grammar/smalltalk-tmbundle.txt
@@ -1,6 +1,7 @@
---
type: grammar
name: smalltalk-tmbundle
+version: 69b6ea767fb1a911931cdaa14cd980a2e675a1d0
license: mit
---
### The MIT License
diff --git a/vendor/licenses/grammar/sourcepawn.txt b/vendor/licenses/grammar/sourcepawn.txt
index 5a200c9f5e..32dde257fd 100644
--- a/vendor/licenses/grammar/sourcepawn.txt
+++ b/vendor/licenses/grammar/sourcepawn.txt
@@ -1,6 +1,7 @@
---
type: grammar
name: sourcepawn
+version: d5e1022a4e09cdba32b416e682a2c31c72240733
license: mit
---
Copyright (c) 2013-2016 Austin Wagner
@@ -9,4 +10,4 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of
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.
+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/vendor/licenses/grammar/sql.tmbundle.txt b/vendor/licenses/grammar/sql.tmbundle.txt
index 8759ae66f4..604c467008 100644
--- a/vendor/licenses/grammar/sql.tmbundle.txt
+++ b/vendor/licenses/grammar/sql.tmbundle.txt
@@ -1,10 +1,9 @@
---
type: grammar
name: sql.tmbundle
+version: 6d4edbc113d3272f7c097d6b1504624289ee2bc5
license: permissive
-curated: true
---
-
If not otherwise specified (see below), files in this repository fall under the following license:
Permission to copy, use, modify, sell and distribute this
@@ -12,4 +11,4 @@ If not otherwise specified (see below), files in this repository fall under the
express or implied warranty, and with no claim as to its
suitability for any purpose.
-An exception is made for files in readable text which contain their own license information, or files where an accompanying file exists (in the same directory) with a “-license” suffix added to the base-name name of the original file, and an extension of txt, html, or similar. For example “tidy” is accompanied by “tidy-license.txt”.
+An exception is made for files in readable text which contain their own license information, or files where an accompanying file exists (in the same directory) with a “-license” suffix added to the base-name name of the original file, and an extension of txt, html, or similar. For example “tidy” is accompanied by “tidy-license.txt”.
\ No newline at end of file
diff --git a/vendor/licenses/grammar/squirrel-language.txt b/vendor/licenses/grammar/squirrel-language.txt
index e37cf6faad..92e0bdc547 100644
--- a/vendor/licenses/grammar/squirrel-language.txt
+++ b/vendor/licenses/grammar/squirrel-language.txt
@@ -1,6 +1,7 @@
---
type: grammar
name: squirrel-language
+version: e3fc608676caad0bc3fd6001dadae90590b697e0
license: mit
---
The MIT License (MIT)
@@ -23,4 +24,4 @@ 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.
+THE SOFTWARE.
\ No newline at end of file
diff --git a/vendor/licenses/grammar/st2-zonefile.txt b/vendor/licenses/grammar/st2-zonefile.txt
index 5fc739f538..ca92b89ab6 100644
--- a/vendor/licenses/grammar/st2-zonefile.txt
+++ b/vendor/licenses/grammar/st2-zonefile.txt
@@ -1,6 +1,7 @@
---
type: grammar
name: st2-zonefile
+version: c17e09fe5838c53d014f66187e5db0016ce8901d
license: mit
---
The MIT License (MIT)
@@ -23,4 +24,4 @@ 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.
+SOFTWARE.
\ No newline at end of file
diff --git a/vendor/licenses/grammar/standard-ml.tmbundle.txt b/vendor/licenses/grammar/standard-ml.tmbundle.txt
index 4a12a1b176..258f4072d9 100644
--- a/vendor/licenses/grammar/standard-ml.tmbundle.txt
+++ b/vendor/licenses/grammar/standard-ml.tmbundle.txt
@@ -1,10 +1,9 @@
---
type: grammar
name: standard-ml.tmbundle
+version: fea2448291e7073918c520f82d56c95e36bc6baa
license: permissive
-curated: true
---
-
If not otherwise specified (see below), files in this repository fall under the following license:
Permission to copy, use, modify, sell and distribute this
@@ -12,4 +11,4 @@ If not otherwise specified (see below), files in this repository fall under the
express or implied warranty, and with no claim as to its
suitability for any purpose.
-An exception is made for files in readable text which contain their own license information, or files where an accompanying file exists (in the same directory) with a “-license” suffix added to the base-name name of the original file, and an extension of txt, html, or similar. For example “tidy” is accompanied by “tidy-license.txt”.
+An exception is made for files in readable text which contain their own license information, or files where an accompanying file exists (in the same directory) with a “-license” suffix added to the base-name name of the original file, and an extension of txt, html, or similar. For example “tidy” is accompanied by “tidy-license.txt”.
\ No newline at end of file
diff --git a/vendor/licenses/grammar/sublime-MuPAD.txt b/vendor/licenses/grammar/sublime-MuPAD.txt
index fa59d55626..f5fa801343 100644
--- a/vendor/licenses/grammar/sublime-MuPAD.txt
+++ b/vendor/licenses/grammar/sublime-MuPAD.txt
@@ -1,6 +1,7 @@
---
type: grammar
name: sublime-MuPAD
+version: 24674d7167bdaa7446d00a9822b59bc7228a8dda
license: mit
---
The MIT License (MIT)
@@ -23,4 +24,4 @@ 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.
+SOFTWARE.
\ No newline at end of file
diff --git a/vendor/licenses/grammar/sublime-angelscript.txt b/vendor/licenses/grammar/sublime-angelscript.txt
index afe92b4064..2c73c5d257 100644
--- a/vendor/licenses/grammar/sublime-angelscript.txt
+++ b/vendor/licenses/grammar/sublime-angelscript.txt
@@ -1,6 +1,7 @@
---
type: grammar
name: sublime-angelscript
+version: 6a662e6dfe1b74d9e97c703de9b5880c61a376f9
license: unlicense
---
This is free and unencumbered software released into the public domain.
@@ -24,4 +25,4 @@ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
IN NO EVENT SHALL THE AUTHORS 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.
+OTHER DEALINGS IN THE SOFTWARE.
\ No newline at end of file
diff --git a/vendor/licenses/grammar/sublime-aspectj.txt b/vendor/licenses/grammar/sublime-aspectj.txt
index 5b7ddc186b..43bed36d69 100644
--- a/vendor/licenses/grammar/sublime-aspectj.txt
+++ b/vendor/licenses/grammar/sublime-aspectj.txt
@@ -1,6 +1,7 @@
---
type: grammar
name: sublime-aspectj
+version: c1928d2335a2958cdf69e06351d2c4118fc22ec8
license: mit
---
The MIT License (MIT)
@@ -23,5 +24,4 @@ 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.
-
+SOFTWARE.
\ No newline at end of file
diff --git a/vendor/licenses/grammar/sublime-autoit.txt b/vendor/licenses/grammar/sublime-autoit.txt
index 9d452aea80..74ecdf0a0c 100644
--- a/vendor/licenses/grammar/sublime-autoit.txt
+++ b/vendor/licenses/grammar/sublime-autoit.txt
@@ -1,6 +1,7 @@
---
type: grammar
name: sublime-autoit
+version: 2b2e950c7edb47da76d335fb205593bc83987a19
license: mit
---
Copyright (c) 2016 AutoIt
@@ -9,4 +10,4 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of
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.
+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/vendor/licenses/grammar/sublime-befunge.txt b/vendor/licenses/grammar/sublime-befunge.txt
index d68d7e6415..647d23511a 100644
--- a/vendor/licenses/grammar/sublime-befunge.txt
+++ b/vendor/licenses/grammar/sublime-befunge.txt
@@ -1,6 +1,7 @@
---
type: grammar
name: sublime-befunge
+version: a49a3fb1a3afca1dde2a522585841d97999e8ad7
license: mit
---
The MIT License (MIT)
diff --git a/vendor/licenses/grammar/sublime-bsv.txt b/vendor/licenses/grammar/sublime-bsv.txt
index f53ac9b12f..db9274162f 100644
--- a/vendor/licenses/grammar/sublime-bsv.txt
+++ b/vendor/licenses/grammar/sublime-bsv.txt
@@ -1,6 +1,7 @@
---
type: grammar
name: sublime-bsv
+version: 6b3ecf1d44a2e9a9fc8a6c73268d23f1ade81cd8
license: mit
---
The MIT License (MIT)
@@ -22,4 +23,4 @@ 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.
+CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
\ No newline at end of file
diff --git a/vendor/licenses/grammar/sublime-cirru.txt b/vendor/licenses/grammar/sublime-cirru.txt
index 41e5b98b11..31da7f8d1c 100644
--- a/vendor/licenses/grammar/sublime-cirru.txt
+++ b/vendor/licenses/grammar/sublime-cirru.txt
@@ -1,6 +1,7 @@
---
type: grammar
name: sublime-cirru
+version: 99dd7166718ad83faf4cce77ab5d8821f13c174b
license: mit
---
The MIT License (MIT)
@@ -21,4 +22,4 @@ 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.
+THE SOFTWARE.
\ No newline at end of file
diff --git a/vendor/licenses/grammar/sublime-clips.txt b/vendor/licenses/grammar/sublime-clips.txt
index 77b0d1d4ba..f75102db99 100644
--- a/vendor/licenses/grammar/sublime-clips.txt
+++ b/vendor/licenses/grammar/sublime-clips.txt
@@ -1,6 +1,7 @@
---
type: grammar
name: sublime-clips
+version: af566eb80b1a47d3b54713ad324dfc1d396ed464
license: mit
---
The MIT License (MIT)
@@ -10,4 +11,4 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of
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.
+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/vendor/licenses/grammar/sublime-fantom.txt b/vendor/licenses/grammar/sublime-fantom.txt
index 7409c87518..161b1398a8 100644
--- a/vendor/licenses/grammar/sublime-fantom.txt
+++ b/vendor/licenses/grammar/sublime-fantom.txt
@@ -1,11 +1,9 @@
---
type: grammar
name: sublime-fantom
+version: e5bef70a6c10a173bc82a1a8ccb4087f3a2d3bd9
license: mit
---
-License
-------------
-
The MIT License (MIT)
Copyright (c) 2016 Matthew Giannini
diff --git a/vendor/licenses/grammar/sublime-glsl.txt b/vendor/licenses/grammar/sublime-glsl.txt
index 9cdd283304..92609fde46 100644
--- a/vendor/licenses/grammar/sublime-glsl.txt
+++ b/vendor/licenses/grammar/sublime-glsl.txt
@@ -1,6 +1,7 @@
---
type: grammar
name: sublime-glsl
+version: cb045fc3752f1cfd12dbcde840f2bd71d81830e2
license: unlicense
---
This is free and unencumbered software released into the public domain.
@@ -26,4 +27,4 @@ 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.
-For more information, please refer to
+For more information, please refer to
\ No newline at end of file
diff --git a/vendor/licenses/grammar/sublime-golo.txt b/vendor/licenses/grammar/sublime-golo.txt
index 04af5128db..6cd69dae8a 100644
--- a/vendor/licenses/grammar/sublime-golo.txt
+++ b/vendor/licenses/grammar/sublime-golo.txt
@@ -1,6 +1,7 @@
---
type: grammar
name: sublime-golo
+version: 5f06f595f33b9473a7691859d26b0439141eba70
license: mit
---
The MIT License (MIT)
@@ -23,4 +24,4 @@ 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.
+THE SOFTWARE.
\ No newline at end of file
diff --git a/vendor/licenses/grammar/sublime-mask.txt b/vendor/licenses/grammar/sublime-mask.txt
index 1a8cfaaf28..edbf93d5ea 100644
--- a/vendor/licenses/grammar/sublime-mask.txt
+++ b/vendor/licenses/grammar/sublime-mask.txt
@@ -1,6 +1,7 @@
---
type: grammar
name: sublime-mask
+version: ac22df66625ba1a2e0ddff73bc636a75d182acfb
license: mit
---
MIT LICENSE
@@ -23,4 +24,4 @@ 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.
+THE SOFTWARE.
\ No newline at end of file
diff --git a/vendor/licenses/grammar/sublime-nearley.txt b/vendor/licenses/grammar/sublime-nearley.txt
index 486d1e2d7d..254a2ebc36 100644
--- a/vendor/licenses/grammar/sublime-nearley.txt
+++ b/vendor/licenses/grammar/sublime-nearley.txt
@@ -1,6 +1,7 @@
---
type: grammar
name: sublime-nearley
+version: 90926b494778658cf61817868cd96136d6f6dc46
license: unlicense
---
This is free and unencumbered software released into the public domain.
@@ -26,4 +27,4 @@ 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.
-For more information, please refer to
+For more information, please refer to
\ No newline at end of file
diff --git a/vendor/licenses/grammar/sublime-netlinx.txt b/vendor/licenses/grammar/sublime-netlinx.txt
index 65a4a3128b..dd672e2b33 100644
--- a/vendor/licenses/grammar/sublime-netlinx.txt
+++ b/vendor/licenses/grammar/sublime-netlinx.txt
@@ -1,6 +1,7 @@
---
type: grammar
name: sublime-netlinx
+version: f4a70bd37a65d4cbd56b7fb4f393ed6c1d4dfbde
license: mit
---
The MIT License (MIT)
diff --git a/vendor/licenses/grammar/sublime-nginx.txt b/vendor/licenses/grammar/sublime-nginx.txt
index 981df4a1fc..e54153e853 100644
--- a/vendor/licenses/grammar/sublime-nginx.txt
+++ b/vendor/licenses/grammar/sublime-nginx.txt
@@ -1,6 +1,7 @@
---
type: grammar
name: sublime-nginx
+version: 4f97f80bcaead898f5a737cc317e0445f10fd164
license: mit
---
The MIT License (MIT)
@@ -26,4 +27,4 @@ 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.
+THE SOFTWARE.
\ No newline at end of file
diff --git a/vendor/licenses/grammar/sublime-opal.txt b/vendor/licenses/grammar/sublime-opal.txt
index 4939a156fa..692a5f10fd 100644
--- a/vendor/licenses/grammar/sublime-opal.txt
+++ b/vendor/licenses/grammar/sublime-opal.txt
@@ -1,6 +1,7 @@
---
type: grammar
name: sublime-opal
+version: bcd852ad5b634de2029085a8fd1782152cdc0170
license: mit
---
The MIT License (MIT)
@@ -23,4 +24,4 @@ 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.
+SOFTWARE.
\ No newline at end of file
diff --git a/vendor/licenses/grammar/sublime-pony.txt b/vendor/licenses/grammar/sublime-pony.txt
index 1eda456063..f4d24da938 100644
--- a/vendor/licenses/grammar/sublime-pony.txt
+++ b/vendor/licenses/grammar/sublime-pony.txt
@@ -1,6 +1,7 @@
---
type: grammar
name: sublime-pony
+version: 716cdf99c07e1869a01be0251725187406084ee6
license: bsd-2-clause
---
Copyright (c) 2014-2015, Causality Ltd.
@@ -24,4 +25,4 @@ ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
-SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
\ No newline at end of file
diff --git a/vendor/licenses/grammar/sublime-q.txt b/vendor/licenses/grammar/sublime-q.txt
index 91227deb9f..cc555936cd 100644
--- a/vendor/licenses/grammar/sublime-q.txt
+++ b/vendor/licenses/grammar/sublime-q.txt
@@ -1,6 +1,7 @@
---
type: grammar
name: sublime-q
+version: 14e797189f3ae14a388741e97cee8dfc8baaf3b9
license: mit
---
MIT License
@@ -23,4 +24,4 @@ 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.
+SOFTWARE.
\ No newline at end of file
diff --git a/vendor/licenses/grammar/sublime-rexx.txt b/vendor/licenses/grammar/sublime-rexx.txt
index 0c1fcfcecf..2173fdb442 100644
--- a/vendor/licenses/grammar/sublime-rexx.txt
+++ b/vendor/licenses/grammar/sublime-rexx.txt
@@ -1,6 +1,7 @@
---
type: grammar
name: sublime-rexx
+version: 2e304a34d3493e7453a430735191d91f356faa5a
license: mit
---
The MIT License (MIT)
@@ -23,4 +24,4 @@ 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.
+SOFTWARE.
\ No newline at end of file
diff --git a/vendor/licenses/grammar/sublime-robot-plugin.txt b/vendor/licenses/grammar/sublime-robot-plugin.txt
index a622f5c489..0d65946781 100644
--- a/vendor/licenses/grammar/sublime-robot-plugin.txt
+++ b/vendor/licenses/grammar/sublime-robot-plugin.txt
@@ -1,6 +1,7 @@
---
type: grammar
name: sublime-robot-plugin
+version: 52c4068dd977bcda463d58c9395f9a35c0bdfbeb
license: apache-2.0
---
Apache License
@@ -203,4 +204,4 @@ Apache License
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
- limitations under the License.
+ limitations under the License.
\ No newline at end of file
diff --git a/vendor/licenses/grammar/sublime-shen.txt b/vendor/licenses/grammar/sublime-shen.txt
index ae76ce9957..65923c02ed 100644
--- a/vendor/licenses/grammar/sublime-shen.txt
+++ b/vendor/licenses/grammar/sublime-shen.txt
@@ -1,11 +1,9 @@
---
type: grammar
name: sublime-shen
+version: 5bc0605e9ce33d6f7e3fc9e032262161a956909a
license: bsd-3-clause
---
-License
-------------
-
Copyright (c) 2017, Robert Koeninger
All rights reserved.
@@ -31,4 +29,4 @@ DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
-SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
\ No newline at end of file
diff --git a/vendor/licenses/grammar/sublime-spintools.txt b/vendor/licenses/grammar/sublime-spintools.txt
index 0ece2c8cf7..cd16cf65e6 100644
--- a/vendor/licenses/grammar/sublime-spintools.txt
+++ b/vendor/licenses/grammar/sublime-spintools.txt
@@ -1,20 +1,17 @@
---
type: grammar
name: sublime-spintools
+version: 18a11dcc14626735baf87617e7b562b3a7774189
license: zlib
-curated: true
---
-
-sublimed-spintools is licensed under the zlib license:
-
Copyright (c) 2013 Brant Wedel
This software is provided 'as-is', without any express or implied warranty. In no event will the authors be held liable for any damages arising from the use of this software.
Permission is granted to anyone to use this software for any purpose, including commercial applications, and to alter it and redistribute it freely, subject to the following restrictions:
-The origin of this software must not be misrepresented; you must not claim that you wrote the original software. If you use this software in a product, an acknowledgment in the product documentation would be appreciated but is not required.
+1. The origin of this software must not be misrepresented; you must not claim that you wrote the original software. If you use this software in a product, an acknowledgment in the product documentation would be appreciated but is not required.
-Altered source versions must be plainly marked as such, and must not be misrepresented as being the original software.
+2. Altered source versions must be plainly marked as such, and must not be misrepresented as being the original software.
-This notice may not be removed or altered from any source distribution.
+3. This notice may not be removed or altered from any source distribution.
\ No newline at end of file
diff --git a/vendor/licenses/grammar/sublime-tea.txt b/vendor/licenses/grammar/sublime-tea.txt
index 5e12691b22..26879a3208 100644
--- a/vendor/licenses/grammar/sublime-tea.txt
+++ b/vendor/licenses/grammar/sublime-tea.txt
@@ -1,6 +1,7 @@
---
type: grammar
name: sublime-tea
+version: 62b508c948bd7c500a80a898a8fa05bdc311c9d1
license: apache-2.0
---
Apache License
@@ -203,4 +204,4 @@ Apache License
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
- limitations under the License.
+ limitations under the License.
\ No newline at end of file
diff --git a/vendor/licenses/grammar/sublime-terra.txt b/vendor/licenses/grammar/sublime-terra.txt
index 5cb74f8bf3..d9b07c43a2 100644
--- a/vendor/licenses/grammar/sublime-terra.txt
+++ b/vendor/licenses/grammar/sublime-terra.txt
@@ -1,6 +1,7 @@
---
type: grammar
name: sublime-terra
+version: d77b0341d26f0989b2dc918ce9fb5cb8a5c7202b
license: bsd-3-clause
---
Copyright (c) 2016, Bayu Aldi Yansyah
@@ -29,4 +30,4 @@ DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
-OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
\ No newline at end of file
diff --git a/vendor/licenses/grammar/sublime-text-ox.txt b/vendor/licenses/grammar/sublime-text-ox.txt
index 61ff5a67fd..5b15d4df00 100644
--- a/vendor/licenses/grammar/sublime-text-ox.txt
+++ b/vendor/licenses/grammar/sublime-text-ox.txt
@@ -1,6 +1,7 @@
---
type: grammar
name: sublime-text-ox
+version: 5cbc2c655b4b771d34b75bbe962964455510644b
license: mit
---
License
@@ -26,4 +27,4 @@ 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.
+SOFTWARE.
\ No newline at end of file
diff --git a/vendor/licenses/grammar/sublime-varnish.txt b/vendor/licenses/grammar/sublime-varnish.txt
index b1a2c696a7..97eacb5095 100644
--- a/vendor/licenses/grammar/sublime-varnish.txt
+++ b/vendor/licenses/grammar/sublime-varnish.txt
@@ -1,6 +1,7 @@
---
type: grammar
name: sublime-varnish
+version: a2089722e6377b665fe4f664b1d44f5da54ea8a0
license: mit
---
The MIT License (MIT)
@@ -26,4 +27,4 @@ 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.
+THE SOFTWARE.
\ No newline at end of file
diff --git a/vendor/licenses/grammar/sublime_cobol.txt b/vendor/licenses/grammar/sublime_cobol.txt
index 410e7d5020..b6240ce29c 100644
--- a/vendor/licenses/grammar/sublime_cobol.txt
+++ b/vendor/licenses/grammar/sublime_cobol.txt
@@ -1,6 +1,7 @@
---
type: grammar
name: sublime_cobol
+version: bf245c21001dbe8038768967fb87c2d24d1da1d1
license: apache-2.0
---
Apache License
diff --git a/vendor/licenses/grammar/sublimeassembly.txt b/vendor/licenses/grammar/sublimeassembly.txt
index 780ae22169..3127d1a548 100644
--- a/vendor/licenses/grammar/sublimeassembly.txt
+++ b/vendor/licenses/grammar/sublimeassembly.txt
@@ -1,12 +1,33 @@
---
type: grammar
name: sublimeassembly
+version: 5ac0ff00430cca2b5d6a3349d9f2adcac39e4193
license: bsd-3-clause
-curated: true
---
+Copyright (c) 2015, Pavlo Malynin
+All rights reserved.
-Copyright (c) 2015, Pavlo Malynin All rights reserved.
+Redistribution and use in source and binary forms, with or without
+modification, are permitted provided that the following conditions are met:
-Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. * Neither the name of Pavlo Malynin nor the names of the contributors may be used to endorse or promote products derived from this software without specific prior written permission.
+* Redistributions of source code must retain the above copyright notice, this
+ list of conditions and the following disclaimer.
-THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+* Redistributions in binary form must reproduce the above copyright notice,
+ this list of conditions and the following disclaimer in the documentation
+ and/or other materials provided with the distribution.
+
+* Neither the name of the copyright holder nor the names of its
+ contributors may be used to endorse or promote products derived from
+ this software without specific prior written permission.
+
+THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
+AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
+IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
+DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE
+FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
+DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
+SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
+CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
+OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
+OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
\ No newline at end of file
diff --git a/vendor/licenses/grammar/sublimeprolog.txt b/vendor/licenses/grammar/sublimeprolog.txt
index b9ec142961..4769ce0cca 100644
--- a/vendor/licenses/grammar/sublimeprolog.txt
+++ b/vendor/licenses/grammar/sublimeprolog.txt
@@ -1,6 +1,7 @@
---
type: grammar
name: sublimeprolog
+version: 67a55710d9cf4db37484bea373e16c0fe2eeee5b
license: mpl-2.0
---
Mozilla Public License, version 2.0
@@ -364,5 +365,4 @@ Exhibit B - "Incompatible With Secondary Licenses" Notice
This Source Code Form is "Incompatible
With Secondary Licenses", as defined by
- the Mozilla Public License, v. 2.0.
-
+ the Mozilla Public License, v. 2.0.
\ No newline at end of file
diff --git a/vendor/licenses/grammar/sublimetext-cuda-cpp.txt b/vendor/licenses/grammar/sublimetext-cuda-cpp.txt
index cf54b61fa3..74273e36fd 100644
--- a/vendor/licenses/grammar/sublimetext-cuda-cpp.txt
+++ b/vendor/licenses/grammar/sublimetext-cuda-cpp.txt
@@ -1,6 +1,7 @@
---
type: grammar
name: sublimetext-cuda-cpp
+version: 2ae9ec0a57cf8eab9a3abb19737d2bb45f002e8d
license: bsd-3-clause
---
# Copyright (c) 2014, NVIDIA CORPORATION. All rights reserved.
diff --git a/vendor/licenses/grammar/swift.tmbundle.txt b/vendor/licenses/grammar/swift.tmbundle.txt
index e13ab24ba2..5584b06a1f 100644
--- a/vendor/licenses/grammar/swift.tmbundle.txt
+++ b/vendor/licenses/grammar/swift.tmbundle.txt
@@ -1,6 +1,7 @@
---
type: grammar
name: swift.tmbundle
+version: cec27af6662e3799120b208e64483efdfe5521f5
license: permissive
---
If not otherwise specified (see below), files in this repository fall under the following license:
@@ -10,4 +11,4 @@ If not otherwise specified (see below), files in this repository fall under the
express or implied warranty, and with no claim as to its
suitability for any purpose.
-An exception is made for files in readable text which contain their own license information, or files where an accompanying file exists (in the same directory) with a “-license” suffix added to the base-name name of the original file, and an extension of txt, html, or similar. For example “tidy” is accompanied by “tidy-license.txt”.
+An exception is made for files in readable text which contain their own license information, or files where an accompanying file exists (in the same directory) with a “-license” suffix added to the base-name name of the original file, and an extension of txt, html, or similar. For example “tidy” is accompanied by “tidy-license.txt”.
\ No newline at end of file
diff --git a/vendor/licenses/grammar/tcl.tmbundle.txt b/vendor/licenses/grammar/tcl.tmbundle.txt
index 5fdb0854dd..3ca4cb4748 100644
--- a/vendor/licenses/grammar/tcl.tmbundle.txt
+++ b/vendor/licenses/grammar/tcl.tmbundle.txt
@@ -1,10 +1,9 @@
---
type: grammar
name: tcl.tmbundle
+version: f06f80144c01ff1e3836cef21cbac62f8e1c5df6
license: permissive
-curated: true
---
-
If not otherwise specified (see below), files in this repository fall under the following license:
Permission to copy, use, modify, sell and distribute this
@@ -12,4 +11,4 @@ If not otherwise specified (see below), files in this repository fall under the
express or implied warranty, and with no claim as to its
suitability for any purpose.
-An exception is made for files in readable text which contain their own license information, or files where an accompanying file exists (in the same directory) with a “-license” suffix added to the base-name name of the original file, and an extension of txt, html, or similar. For example “tidy” is accompanied by “tidy-license.txt”.
+An exception is made for files in readable text which contain their own license information, or files where an accompanying file exists (in the same directory) with a “-license” suffix added to the base-name name of the original file, and an extension of txt, html, or similar. For example “tidy” is accompanied by “tidy-license.txt”.
\ No newline at end of file
diff --git a/vendor/licenses/grammar/thrift.tmbundle.txt b/vendor/licenses/grammar/thrift.tmbundle.txt
index 41731e6a97..25d70b1a3d 100644
--- a/vendor/licenses/grammar/thrift.tmbundle.txt
+++ b/vendor/licenses/grammar/thrift.tmbundle.txt
@@ -1,10 +1,9 @@
---
type: grammar
name: thrift.tmbundle
+version: eac7c8100416015be2bd20562138f43ba3a573b7
license: permissive
-curated: true
---
-
If not otherwise specified (see below), files in this repository fall under the following license:
Permission to copy, use, modify, sell and distribute this
@@ -12,4 +11,4 @@ If not otherwise specified (see below), files in this repository fall under the
express or implied warranty, and with no claim as to its
suitability for any purpose.
-An exception is made for files in readable text which contain their own license information, or files where an accompanying file exists (in the same directory) with a “-license” suffix added to the base-name name of the original file, and an extension of txt, html, or similar. For example “tidy” is accompanied by “tidy-license.txt”.
+An exception is made for files in readable text which contain their own license information, or files where an accompanying file exists (in the same directory) with a “-license” suffix added to the base-name name of the original file, and an extension of txt, html, or similar. For example “tidy” is accompanied by “tidy-license.txt”.
\ No newline at end of file
diff --git a/vendor/licenses/grammar/toml.tmbundle.txt b/vendor/licenses/grammar/toml.tmbundle.txt
index 00c608360b..f8a2091be1 100644
--- a/vendor/licenses/grammar/toml.tmbundle.txt
+++ b/vendor/licenses/grammar/toml.tmbundle.txt
@@ -1,10 +1,9 @@
---
type: grammar
name: toml.tmbundle
+version: 37c532ae892d2af2da76e05918af673efc1111a6
license: permissive
-curated: true
---
-
If not otherwise specified (see below), files in this repository fall under the following license:
Permission to copy, use, modify, sell and distribute this
@@ -12,4 +11,4 @@ If not otherwise specified (see below), files in this repository fall under the
express or implied warranty, and with no claim as to its
suitability for any purpose.
-An exception is made for files in readable text which contain their own license information, or files where an accompanying file exists (in the same directory) with a “-license” suffix added to the base-name name of the original file, and an extension of txt, html, or similar. For example “tidy” is accompanied by “tidy-license.txt”.
+An exception is made for files in readable text which contain their own license information, or files where an accompanying file exists (in the same directory) with a “-license” suffix added to the base-name name of the original file, and an extension of txt, html, or similar. For example “tidy” is accompanied by “tidy-license.txt”.
\ No newline at end of file
diff --git a/vendor/licenses/grammar/turtle.tmbundle.txt b/vendor/licenses/grammar/turtle.tmbundle.txt
index f7270880dd..b4ffd33551 100644
--- a/vendor/licenses/grammar/turtle.tmbundle.txt
+++ b/vendor/licenses/grammar/turtle.tmbundle.txt
@@ -1,6 +1,7 @@
---
type: grammar
name: turtle.tmbundle
+version: d70312bc94acb945c995c880400f081007f691ce
license: mit
---
The MIT License (MIT)
diff --git a/vendor/licenses/grammar/verilog.tmbundle.txt b/vendor/licenses/grammar/verilog.tmbundle.txt
index 042e051705..793d362bac 100644
--- a/vendor/licenses/grammar/verilog.tmbundle.txt
+++ b/vendor/licenses/grammar/verilog.tmbundle.txt
@@ -1,10 +1,9 @@
---
type: grammar
name: verilog.tmbundle
+version: f55a9859f48bb6189992b86748c127044131a785
license: permissive
-curated: true
---
-
If not otherwise specified (see below), files in this repository fall under the following license:
Permission to copy, use, modify, sell and distribute this
@@ -12,4 +11,4 @@ If not otherwise specified (see below), files in this repository fall under the
express or implied warranty, and with no claim as to its
suitability for any purpose.
-An exception is made for files in readable text which contain their own license information, or files where an accompanying file exists (in the same directory) with a “-license” suffix added to the base-name name of the original file, and an extension of txt, html, or similar. For example “tidy” is accompanied by “tidy-license.txt”.
+An exception is made for files in readable text which contain their own license information, or files where an accompanying file exists (in the same directory) with a “-license” suffix added to the base-name name of the original file, and an extension of txt, html, or similar. For example “tidy” is accompanied by “tidy-license.txt”.
\ No newline at end of file
diff --git a/vendor/licenses/grammar/vhdl.txt b/vendor/licenses/grammar/vhdl.txt
index 36b8e6df6a..63502a28ed 100644
--- a/vendor/licenses/grammar/vhdl.txt
+++ b/vendor/licenses/grammar/vhdl.txt
@@ -1,8 +1,8 @@
---
type: grammar
name: vhdl
+version: ba4d6e438eedeab49217219163ade0b06f3aacab
license: permissive
-curated: true
---
If not otherwise specified (see below), files in this repository fall under the following license:
@@ -11,4 +11,4 @@ If not otherwise specified (see below), files in this repository fall under the
express or implied warranty, and with no claim as to its
suitability for any purpose.
-An exception is made for files in readable text which contain their own license information, or files where an accompanying file exists (in the same directory) with a “-license” suffix added to the base-name name of the original file, and an extension of txt, html, or similar. For example “tidy” is accompanied by “tidy-license.txt”.
+An exception is made for files in readable text which contain their own license information, or files where an accompanying file exists (in the same directory) with a “-license” suffix added to the base-name name of the original file, and an extension of txt, html, or similar. For example “tidy” is accompanied by “tidy-license.txt”.
\ No newline at end of file
diff --git a/vendor/licenses/grammar/vscode-scala-syntax.txt b/vendor/licenses/grammar/vscode-scala-syntax.txt
index 0610b46189..b69da05b8a 100644
--- a/vendor/licenses/grammar/vscode-scala-syntax.txt
+++ b/vendor/licenses/grammar/vscode-scala-syntax.txt
@@ -1,11 +1,12 @@
---
type: grammar
name: vscode-scala-syntax
+version: 19a2051e58d88b9bf320b9343746d547f8b9648a
license: mit
---
MIT License
-Copyright (c)
+Copyright (c) 2018 Nicolas Stucki
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
@@ -23,4 +24,4 @@ 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.
+SOFTWARE.
\ No newline at end of file
diff --git a/vendor/licenses/grammar/vue-syntax-highlight.txt b/vendor/licenses/grammar/vue-syntax-highlight.txt
index 9d4369d681..fc740b5580 100644
--- a/vendor/licenses/grammar/vue-syntax-highlight.txt
+++ b/vendor/licenses/grammar/vue-syntax-highlight.txt
@@ -1,11 +1,12 @@
---
type: grammar
name: vue-syntax-highlight
+version: 2e8c5b938264b482bb9eb177171dd82701faebff
license: mit
---
The MIT License (MIT)
-Copyright (c) 2013-2014 Yuxi Evan You
+Copyright (c) 2013-2016 Evan You
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
@@ -23,4 +24,4 @@ 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.
+THE SOFTWARE.
\ No newline at end of file
diff --git a/vendor/licenses/grammar/wdl-sublime-syntax-highlighter.txt b/vendor/licenses/grammar/wdl-sublime-syntax-highlighter.txt
index 03161e26a8..714129bd78 100644
--- a/vendor/licenses/grammar/wdl-sublime-syntax-highlighter.txt
+++ b/vendor/licenses/grammar/wdl-sublime-syntax-highlighter.txt
@@ -1,6 +1,7 @@
---
type: grammar
name: wdl-sublime-syntax-highlighter
+version: 0cc8bd6f1a44e67beac8acbe3431ca290a054e8e
license: bsd-3-clause
---
BSD 3-Clause License
@@ -31,4 +32,4 @@ DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
-OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
\ No newline at end of file
diff --git a/vendor/licenses/grammar/xc.tmbundle.txt b/vendor/licenses/grammar/xc.tmbundle.txt
index 08f100a582..12df3acbcf 100644
--- a/vendor/licenses/grammar/xc.tmbundle.txt
+++ b/vendor/licenses/grammar/xc.tmbundle.txt
@@ -1,10 +1,9 @@
---
type: grammar
name: xc.tmbundle
+version: 309d1f662ca32513d3eed19f44ce4ef1d6f5f611
license: permissive
-curated: true
---
-
If not otherwise specified (see below), files in this repository fall under the following license:
Permission to copy, use, modify, sell and distribute this
@@ -12,4 +11,4 @@ If not otherwise specified (see below), files in this repository fall under the
express or implied warranty, and with no claim as to its
suitability for any purpose.
-An exception is made for files in readable text which contain their own license information, or files where an accompanying file exists (in the same directory) with a “-license” suffix added to the base-name name of the original file, and an extension of txt, html, or similar. For example “tidy” is accompanied by “tidy-license.txt”.
+An exception is made for files in readable text which contain their own license information, or files where an accompanying file exists (in the same directory) with a “-license” suffix added to the base-name name of the original file, and an extension of txt, html, or similar. For example “tidy” is accompanied by “tidy-license.txt”.
\ No newline at end of file
diff --git a/vendor/licenses/grammar/xml.tmbundle.txt b/vendor/licenses/grammar/xml.tmbundle.txt
index 2bef31e9c7..16230e593a 100644
--- a/vendor/licenses/grammar/xml.tmbundle.txt
+++ b/vendor/licenses/grammar/xml.tmbundle.txt
@@ -1,10 +1,9 @@
---
type: grammar
name: xml.tmbundle
+version: 715363040b087a0c6720800e6dac30f9708b3f23
license: permissive
-curated: true
---
-
If not otherwise specified (see below), files in this repository fall under the following license:
Permission to copy, use, modify, sell and distribute this
@@ -12,4 +11,4 @@ If not otherwise specified (see below), files in this repository fall under the
express or implied warranty, and with no claim as to its
suitability for any purpose.
-An exception is made for files in readable text which contain their own license information, or files where an accompanying file exists (in the same directory) with a “-license” suffix added to the base-name name of the original file, and an extension of txt, html, or similar. For example “tidy” is accompanied by “tidy-license.txt”.
+An exception is made for files in readable text which contain their own license information, or files where an accompanying file exists (in the same directory) with a “-license” suffix added to the base-name name of the original file, and an extension of txt, html, or similar. For example “tidy” is accompanied by “tidy-license.txt”.
\ No newline at end of file
diff --git a/vendor/licenses/grammar/zephir-sublime.txt b/vendor/licenses/grammar/zephir-sublime.txt
index 71b4c835c1..dea6d1c300 100644
--- a/vendor/licenses/grammar/zephir-sublime.txt
+++ b/vendor/licenses/grammar/zephir-sublime.txt
@@ -1,10 +1,10 @@
---
type: grammar
name: zephir-sublime
+version: 1935db8e087e2a9323d09b9b136d405abfb17975
license: mit
---
-
-Copyright (c) 2014 Zephir Team and contributors
+Copyright (c) 2014-2017 Zephir Team
http://zephir-lang.com
MIT License
@@ -25,4 +25,4 @@ 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.
+THE SOFTWARE.
\ No newline at end of file