File tree Expand file tree Collapse file tree 5 files changed +24
-29
lines changed Expand file tree Collapse file tree 5 files changed +24
-29
lines changed Original file line number Diff line number Diff line change 6
6
" mdast-util-position.js" ,
7
7
" mdast-util-position.min.js"
8
8
],
9
- "preset" : " yandex" ,
10
- "requireQuotedKeysInObjects" : true ,
11
- "disallowQuotedKeysInObjects" : false ,
9
+ "preset" : " crockford" ,
10
+ "requireMultipleVarDecl" : false ,
11
+ "requireVarDeclFirst" : false ,
12
+ "disallowDanglingUnderscores" : false ,
12
13
"maximumLineLength" : {
13
14
"value" : 79 ,
14
15
"allExcept" : [
15
16
" regex" ,
16
- " urlComments"
17
+ " urlComments" ,
18
+ " require"
17
19
]
18
20
},
21
+ "requireQuotedKeysInObjects" : true ,
22
+ "disallowKeywords" : [
23
+ " with"
24
+ ],
19
25
"jsDoc" : {
20
26
"checkAnnotations" : " jsdoc3" ,
21
27
"checkParamExistence" : true ,
Original file line number Diff line number Diff line change 1
1
language : node_js
2
2
node_js :
3
- - ' 0.10'
4
3
- ' 0.11'
5
4
- ' 0.12'
6
5
- ' 4.0'
7
6
- ' 5.0'
8
- - iojs
9
7
sudo : false
10
8
after_script : npm install codecov.io && cat ./coverage/lcov.info | codecov
11
9
deploy :
Original file line number Diff line number Diff line change 18
18
19
19
1.0.0 / 2015-08-17
20
20
==================
21
-
22
- * Replace coveralls with codecov ([ ` d682fec ` ] ( https://github.com/wooorm/mdast-util-position/commit/d682fec ) )
23
- * Refactor ([ ` f88218c ` ] ( https://github.com/wooorm/mdast-util-position/commit/f88218c ) )
24
- * Update dependencies, dev-dependencies ([ ` 510e84f ` ] ( https://github.com/wooorm/mdast-util-position/commit/510e84f ) )
25
-
26
- 0.2.0 / 2015-07-05
27
- ==================
28
-
29
- * Add support for ` offset ` , ` indent ` ([ ` 9c97ef3 ` ] ( https://github.com/wooorm/mdast-util-position/commit/9c97ef3 ) )
30
-
31
- 0.1.0 / 2015-07-04
32
- ==================
Original file line number Diff line number Diff line change @@ -96,10 +96,10 @@ function generated(node) {
96
96
final . line === null || final . column === null ;
97
97
}
98
98
99
- position . generated = generated ;
100
-
101
99
/*
102
100
* Expose.
103
101
*/
104
102
103
+ position . generated = generated ;
104
+
105
105
module . exports = position ;
Original file line number Diff line number Diff line change 18
18
},
19
19
"bugs" : " https://github.com/wooorm/mdast-util-position/issues" ,
20
20
"author" :
" Titus Wormer <[email protected] > (http://wooorm.com)" ,
21
+ "contributors" : [
22
+ " Titus Wormer <[email protected] > (http://wooorm.com)"
23
+ ],
21
24
"files" : [
22
25
" index.js"
23
26
],
24
27
"dependencies" : {},
25
28
"devDependencies" : {
26
29
"browserify" : " ^13.0.0" ,
27
- "eslint" : " ^1 .0.0" ,
30
+ "eslint" : " ^2 .0.0" ,
28
31
"esmangle" : " ^1.0.0" ,
29
32
"istanbul" : " ^0.4.0" ,
30
- "jscs" : " ^2 .0.0" ,
31
- "jscs-jsdoc" : " ^1 .0.0" ,
32
- "remark" : " ^3 .0.0" ,
33
- "remark-comment-config" : " ^2 .0.0" ,
34
- "remark-github" : " ^3 .0.0" ,
35
- "remark-lint" : " ^2 .0.0" ,
36
- "remark-slug" : " ^3 .0.0" ,
37
- "remark-validate-links" : " ^2 .0.0" ,
33
+ "jscs" : " ^3 .0.0" ,
34
+ "jscs-jsdoc" : " ^2 .0.0" ,
35
+ "remark-cli " : " ^1 .0.0" ,
36
+ "remark-comment-config" : " ^4 .0.0" ,
37
+ "remark-github" : " ^5 .0.0" ,
38
+ "remark-lint" : " ^4 .0.0" ,
39
+ "remark-slug" : " ^4 .0.0" ,
40
+ "remark-validate-links" : " ^4 .0.0" ,
38
41
"tape" : " ^4.4.0"
39
42
},
40
43
"scripts" : {
You can’t perform that action at this time.
0 commit comments