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

Commit bcafee6

Browse files
committed
Initial commit
0 parents  commit bcafee6

12 files changed

+8595
-0
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
node_modules/

.travis.yml

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
language: objective-c
2+
3+
notifications:
4+
email:
5+
on_success: never
6+
on_failure: change
7+
8+
script: 'curl -s https://raw.githubusercontent.com/atom/ci/master/build-package.sh | sh'
9+
10+
branches:
11+
only:
12+
- master

CONTRIBUTING.md

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
See the [Atom contributing guide](https://github.com/atom/atom/blob/master/CONTRIBUTING.md)

ISSUE_TEMPLATE.md

+40
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
<!--
2+
3+
Have you read Atom's Code of Conduct? By filing an Issue, you are expected to comply with it, including treating everyone with respect: https://github.com/atom/atom/blob/master/CODE_OF_CONDUCT.md
4+
5+
Do you want to ask a question? Are you looking for support? The Atom message board is the best place for getting support: https://discuss.atom.io
6+
7+
-->
8+
9+
### Prerequisites
10+
11+
* [ ] Put an X between the brackets on this line if you have done all of the following:
12+
* Reproduced the problem in Safe Mode: http://flight-manual.atom.io/hacking-atom/sections/debugging/#using-safe-mode
13+
* Followed all applicable steps in the debugging guide: http://flight-manual.atom.io/hacking-atom/sections/debugging/
14+
* Checked the FAQs on the message board for common solutions: https://discuss.atom.io/c/faq
15+
* Checked that your issue isn't already filed: https://github.com/issues?utf8=✓&q=is%3Aissue+user%3Aatom
16+
* Checked that there is not already an Atom package that provides the described functionality: https://atom.io/packages
17+
18+
### Description
19+
20+
[Description of the issue]
21+
22+
### Steps to Reproduce
23+
24+
1. [First Step]
25+
2. [Second Step]
26+
3. [and so on...]
27+
28+
**Expected behavior:** [What you expect to happen]
29+
30+
**Actual behavior:** [What actually happens]
31+
32+
**Reproduces how often:** [What percentage of the time does it reproduce?]
33+
34+
### Versions
35+
36+
You can get this information from copy and pasting the output of `atom --version` and `apm --version` from the command line. Also, please include the OS and what version of the OS you're running.
37+
38+
### Additional Information
39+
40+
Any additional information, configuration or data that might be necessary to reproduce the issue.

LICENSE.md

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
Copyright (c) Microsoft Corporation
2+
Copyright (c) 2017 GitHub Inc.
3+
4+
Permission is hereby granted, free of charge, to any person obtaining
5+
a copy of this software and associated documentation files (the
6+
"Software"), to deal in the Software without restriction, including
7+
without limitation the rights to use, copy, modify, merge, publish,
8+
distribute, sublicense, and/or sell copies of the Software, and to
9+
permit persons to whom the Software is furnished to do so, subject to
10+
the following conditions:
11+
12+
The above copyright notice and this permission notice shall be
13+
included in all copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
16+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
17+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
18+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
19+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
20+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
21+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
22+
23+
--------------------------------------------------------------------
24+
25+
This package was derived from a TextMate grammar located at
26+
https://github.com/dotnet/csharp-tmlanguage and distributed under the
27+
MIT licence.

PULL_REQUEST_TEMPLATE.md

+28
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
### Requirements
2+
3+
* Filling out the template is required. Any pull request that does not include enough information to be reviewed in a timely manner may be closed at the maintainers' discretion.
4+
* All new code requires tests to ensure against regressions
5+
6+
### Description of the Change
7+
8+
<!--
9+
10+
We must be able to understand the design of your change from this description. If we can't get a good idea of what the code will be doing from the description here, the pull request may be closed at the maintainers' discretion. Keep in mind that the maintainer reviewing this PR may not be familiar with or have worked with the code here recently, so please walk us through the concepts.
11+
12+
-->
13+
14+
### Alternate Designs
15+
16+
<!-- Explain what other alternates were considered and why the proposed version was selected -->
17+
18+
### Benefits
19+
20+
<!-- What benefits will be realized by the code change? -->
21+
22+
### Possible Drawbacks
23+
24+
<!-- What are the possible side-effects or negative impacts of the code change? -->
25+
26+
### Applicable Issues
27+
28+
<!-- Enter any applicable Issues here -->

README.md

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
# TypeScript language support in Atom
2+
[![macOS Build Status](https://travis-ci.org/atom/language-typescript.svg?branch=master)](https://travis-ci.org/atom/language-typescript)
3+
[![Windows Build Status](https://ci.appveyor.com/api/projects/status/ktooccwna96ssiyr/branch/master?svg=true)](https://ci.appveyor.com/project/Atom/language-javascript-dijf8/branch/master)
4+
[![Dependency Status](https://david-dm.org/atom/language-typescript.svg)](https://david-dm.org/atom/language-typescript)
5+
6+
Adds syntax highlighting and snippets for TypeScript in Atom.
7+
8+
Originally [converted](http://flight-manual.atom.io/hacking-atom/sections/converting-from-textmate) from the [Microsoft TypeScript TextMate grammar](https://github.com/dotnet/csharp-tmlanguage).
9+
10+
Contributions are greatly appreciated. Please fork this repository and open a pull request to add snippets, make grammar tweaks, etc.

appveyor.yml

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
version: "{build}"
2+
3+
platform: x64
4+
5+
branches:
6+
only:
7+
- master
8+
9+
clone_depth: 10
10+
11+
skip_tags: true
12+
13+
environment:
14+
APM_TEST_PACKAGES:
15+
16+
matrix:
17+
- ATOM_CHANNEL: stable
18+
- ATOM_CHANNEL: beta
19+
20+
install:
21+
- ps: Install-Product node 4
22+
23+
build_script:
24+
- ps: iex ((new-object net.webclient).DownloadString('https://raw.githubusercontent.com/atom/ci/master/build-package.ps1'))
25+
26+
test: off
27+
deploy: off

0 commit comments

Comments
 (0)