File tree 6 files changed +1064
-24
lines changed
6 files changed +1064
-24
lines changed Original file line number Diff line number Diff line change
1
+ * .sh text eol =lf
2
+ * .bat text eol =crlf
3
+ * .php text eol =lf
4
+ * .inc text eol =lf
5
+ * .ini text eol =lf
6
+ * .html text eol =lf
7
+ * .json text eol =lf
8
+ * .js text eol =lf
9
+ * .ts text eol =lf
10
+ * .jsdoc text eol =lf
11
+ * .css text eol =lf
12
+ * .less text eol =lf
13
+ * .sass text eol =lf
14
+ * .styl text eol =lf
15
+ * .ini text eol =lf
16
+ * .txt text eol =lf
17
+ * .xml text eol =lf
18
+ * .yml text eol =lf
19
+ * .yaml text eol =lf
20
+ * .md text eol =lf
21
+ * .markdown text eol =lf
22
+ * .json5 text eol =lf
23
+ Makefile text eol =lf
24
+
25
+ * .pdf binary
26
+ * .psd binary
27
+ * .png binary
28
+ * .jpg binary
29
+ * .pptx binary
30
+ * .xlsx binary
Original file line number Diff line number Diff line change 1
1
language : node_js
2
2
node_js :
3
- - " 0.10"
3
+ - ' lts/*'
4
+ - 10
5
+ - 12
6
+ - node
7
+ script : npm run build
8
+ before_install : make prep-ci
9
+ after_success : npm run cov
Original file line number Diff line number Diff line change 2
2
3
3
A very simple ` .gitignore ` parser for node.js.
4
4
5
- [ ![ Build Status] ( https://travis-ci.org/codemix /gitignore-parser.svg?branch=master )] ( https://travis-ci.org/codemix /gitignore-parser )
5
+ [ ![ Build Status] ( https://travis-ci.org/GerHobbelt /gitignore-parser.svg?branch=master )] ( https://travis-ci.org/GerHobbelt /gitignore-parser )
6
6
7
7
8
8
## Installation
@@ -13,7 +13,7 @@ A very simple `.gitignore` parser for node.js.
13
13
## Usage
14
14
15
15
``` js
16
- var parser = require (' gitignore-parser' ),
16
+ var parser = require (' @gerhobbelt/ gitignore-parser' ),
17
17
fs = require (' fs' );
18
18
19
19
var gitignore = parser .compile (fs .readFileSync (' .gitignore' , ' utf8' ));
@@ -47,7 +47,7 @@ files.filter(gitignore.denies);
47
47
```
48
48
49
49
50
- ### License
50
+ ## License
51
51
52
52
Apache 2, see [ LICENSE.md] ( ./LICENSE.md ) .
53
53
You can’t perform that action at this time.
0 commit comments