Skip to content
This repository has been archived by the owner on Dec 15, 2022. It is now read-only.

Commit

Permalink
Initial check-in
Browse files Browse the repository at this point in the history
  • Loading branch information
damieng committed Feb 28, 2017
0 parents commit c9db7a0
Show file tree
Hide file tree
Showing 37 changed files with 6,272 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .babelrc
@@ -0,0 +1,16 @@
{
"sourceMap": "inline",
"plugins": [
["add-module-exports", {}],
["transform-async-to-generator", {}],
["transform-decorators-legacy", {}],
["transform-class-properties", {}],
["transform-es2015-modules-commonjs", {"strictMode": false}],
["transform-export-extensions", {}],
["transform-do-expressions", {}],
["transform-function-bind", {}],
["transform-object-rest-spread", {}],
["transform-flow-strip-types", {}],
["transform-react-jsx", {}]
]
}
8 changes: 8 additions & 0 deletions .flowconfig
@@ -0,0 +1,8 @@
[ignore]

[include]

[libs]
flow-libs/

[options]
2 changes: 2 additions & 0 deletions .gitignore
@@ -0,0 +1,2 @@
node_modules
npm-debug.log
15 changes: 15 additions & 0 deletions .travis.yml
@@ -0,0 +1,15 @@
language: objective-c

notifications:
email:
on_success: never
on_failure: change

script: 'curl -s https://raw.githubusercontent.com/atom/ci/master/build-package.sh | sh'

git:
depth: 10

branches:
only:
- master
20 changes: 20 additions & 0 deletions LICENSE.md
@@ -0,0 +1,20 @@
Copyright (c) 2017 GitHub Inc.

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.
10 changes: 10 additions & 0 deletions README.md
@@ -0,0 +1,10 @@
# LanguageClient package
[![macOS Build Status](https://travis-ci.org/atom/langaugeserver-support.svg?branch=master)](https://travis-ci.org/atom/langaugeserver-support) [![Windows Build Status](https://ci.appveyor.com/api/projects/langaugeserver-support/settings/branch/master?svg=true)](https://ci.appveyor.com/project/Atom/langaugeserver-support/branch/master) [![Dependency Status](https://david-dm.org/atom/langaugeserver-support.svg)](https://david-dm.org/atom/langaugeserver-support)

Support Language Server Protocol within Atom.

## Contributing
Always feel free to help out! Whether it's [filing bugs and feature requests](https://github.com/atom/languageserver-support/issues/new) or working on some of the [open issues](https://github.com/atom/languageserver-support/issues), Atom's [contributing guide](https://github.com/atom/atom/blob/master/CONTRIBUTING.md) will help get you started while the [guide for contributing to packages](https://github.com/atom/atom/blob/master/docs/contributing-to-packages.md) has some extra information.

## License
MIT License. See [the license](LICENSE.md) for more details.
27 changes: 27 additions & 0 deletions appveyor.yml
@@ -0,0 +1,27 @@
version: "{build}"

platform: x64

branches:
only:
- master

clone_depth: 10

skip_tags: true

environment:
APM_TEST_PACKAGES:

matrix:
- ATOM_CHANNEL: stable
- ATOM_CHANNEL: beta

install:
- ps: Install-Product node 6

build_script:
- ps: iex ((new-object net.webclient).DownloadString('https://raw.githubusercontent.com/atom/ci/master/build-package.ps1'))

test: off
deploy: off
135 changes: 135 additions & 0 deletions build/auto-bridge.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit c9db7a0

Please sign in to comment.