Skip to content

Commit af9715b

Browse files
committed
Build: Add travis build (fixes eslint#123)
1 parent 04498e4 commit af9715b

File tree

5 files changed

+26
-14
lines changed

5 files changed

+26
-14
lines changed

.editorconfig

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
root = true
2+
3+
[*]
4+
indent_style = space
5+
indent_size = 4
6+
trim_trailing_whitespace = true
7+
end_of_line = lf
8+
insert_final_newline = true

.gitignore

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
node_modules
2-
3-
*.iml
2+
.idea
3+
*.iml
4+
coverage

.travis.yml

+7-4
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,10 @@
11
language: node_js
22
node_js:
3-
- 0.10
4-
after_script:
3+
- "0.10"
4+
- "0.12"
5+
- iojs
6+
- "4"
7+
sudo: false
8+
script: "npm test"
9+
after_success:
510
- npm run coveralls
6-
git:
7-
depth: 10

README.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
doctrine ([doctrine](http://github.com/Constellation/doctrine)) is JSDoc parser.
1+
doctrine ([doctrine](http://github.com/eslint/doctrine)) is JSDoc parser.
22

3-
[![Build Status](https://travis-ci.org/Constellation/doctrine.svg?branch=master)](https://travis-ci.org/Constellation/doctrine)
4-
[![Coverage Status](https://img.shields.io/coveralls/Constellation/doctrine.svg)](https://coveralls.io/r/Constellation/doctrine?branch=master)
5-
[![Dependency Status](https://david-dm.org/Constellation/doctrine.svg)](https://david-dm.org/Constellation/doctrine)
6-
[![devDependency Status](https://david-dm.org/Constellation/doctrine/dev-status.svg)](https://david-dm.org/Constellation/doctrine#info=devDependencies)
7-
[![Gitter chat](https://badges.gitter.im/Constellation/doctrine.png)](https://gitter.im/Constellation/doctrine)
3+
[![Build Status](https://travis-ci.org/eslint/doctrine.svg?branch=master)](https://travis-ci.org/eslint/doctrine)
4+
[![Coverage Status](https://img.shields.io/coveralls/eslint/doctrine.svg)](https://coveralls.io/r/eslint/doctrine?branch=master)
5+
[![Dependency Status](https://david-dm.org/eslint/doctrine.svg)](https://david-dm.org/eslint/doctrine)
6+
[![devDependency Status](https://david-dm.org/eslint/doctrine/dev-status.svg)](https://david-dm.org/eslint/doctrine#info=devDependencies)
7+
[![Gitter chat](https://badges.gitter.im/eslint/doctrine.png)](https://gitter.im/eslint/doctrine)
88

99
It is now used by content assist system of [Eclipse Orion](http://www.eclipse.org/orion/) ([detail](http://planetorion.org/news/2012/10/orion-1-0-release/)). And used as JSDoc validator in [ESLint](http://eslint.org/).
1010

package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
],
2727
"repository": {
2828
"type": "git",
29-
"url": "http://github.com/Constellation/doctrine.git"
29+
"url": "http://github.com/eslint/doctrine.git"
3030
},
3131
"devDependencies": {
3232
"coveralls": "^2.11.2",
@@ -45,7 +45,7 @@
4545
"licenses": [
4646
{
4747
"type": "BSD",
48-
"url": "http://github.com/Constellation/doctrine/raw/master/LICENSE.BSD"
48+
"url": "http://github.com/eslint/doctrine/raw/master/LICENSE.BSD"
4949
}
5050
],
5151
"scripts": {

0 commit comments

Comments
 (0)