Skip to content

Commit ee94f1a

Browse files
committed
Init commit
Code not working yet. Didn't have time to finish it.
0 parents  commit ee94f1a

35 files changed

+537
-0
lines changed

.editorconfig

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
root = true
2+
3+
[*]
4+
indent_style = space
5+
indent_size = 2
6+
charset = utf-8
7+
trim_trailing_whitespace = true
8+
insert_final_newline = true
9+
10+
[*.md]
11+
trim_trailing_whitespace = false

.gitignore

Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
# Logs
2+
logs
3+
*.log
4+
npm-debug.log*
5+
6+
# Runtime data
7+
pids
8+
*.pid
9+
*.seed
10+
11+
# Directory for instrumented libs generated by jscoverage/JSCover
12+
lib-cov
13+
14+
# Coverage directory used by tools like istanbul
15+
coverage
16+
17+
# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
18+
.grunt
19+
20+
# node-waf configuration
21+
.lock-wscript
22+
23+
# Compiled binary addons (http://nodejs.org/api/addons.html)
24+
build/Release
25+
26+
# Dependency directory
27+
bower_components
28+
jspm_packages
29+
node_modules
30+
31+
# Optional npm cache directory
32+
.npm
33+
34+
# Optional REPL history
35+
.node_repl_history
36+
37+
# webstorm
38+
.idea
39+
40+
# typings
41+
typings
42+
43+
# output folder
44+
out

.gitmodules

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
[submodule "source"]
2+
path = source
3+
url = https://github.com/atom/text-buffer.git

.travis.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
language: node_js
2+
3+
notifications:
4+
email:
5+
on_success: never
6+
on_failure: change
7+
8+
node_js:
9+
- "stable"
10+
11+
script:
12+
- npm run lint+build+test

LICENSE

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

README.md

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
# Typed Text Buffer [![Build Status](https://travis-ci.org/typed-typings/npm-text-buffer.svg?branch=master)](https://travis-ci.org/typed-typings/npm-text-buffer)
2+
3+
The type definition for [`text-buffer`](https://github.com/atom/text-buffer.git)
4+
5+
This is not complete. I only implement those that is needed for `env-atom`. Contribution welcome!
6+
7+
## LICENSE
8+
9+
MIT
10+
11+
## Contributing
12+
13+
```sh
14+
# Fork this repo
15+
npm install
16+
17+
npm run watch
18+
19+
# add tests, make changes, pass tests ... then [ctrl+c]
20+
npm run publish
21+
```
22+
23+
## Updating
24+
25+
Update `typings.json/version` to match the source version you are typing against.
26+
e.g. if you are creating typings for `[email protected]`, then:
27+
28+
```js
29+
// typings.json
30+
{
31+
"version": "3.5.0"
32+
// ...
33+
}
34+
```

lib/display-layer.d.ts

Whitespace-only changes.

lib/display-marker-layer.d.ts

Whitespace-only changes.

lib/display-marker.d.ts

Whitespace-only changes.

lib/empty-decoration-layer.d.ts

Whitespace-only changes.

0 commit comments

Comments
 (0)