File tree 3 files changed +47
-45
lines changed
3 files changed +47
-45
lines changed Original file line number Diff line number Diff line change
1
+ {
2
+ "requireCurlyBraces" : [
3
+ " if" ,
4
+ " else" ,
5
+ " for" ,
6
+ " while" ,
7
+ " do" ,
8
+ " try" ,
9
+ " catch"
10
+ ],
11
+ "disallowNewlineBeforeBlockStatements" : true ,
12
+ "requireSpaceBeforeBlockStatements" : true ,
13
+ "requireParenthesesAroundIIFE" : true ,
14
+ "requireSpacesInConditionalExpression" : true ,
15
+ "requireSpaceAfterKeywords" : [
16
+ " if" , " else" ,
17
+ " switch" , " case" ,
18
+ " try" , " catch" ,
19
+ " do" , " while" , " for" ,
20
+ " return" , " typeof" , " void"
21
+ ],
22
+ "validateQuoteMarks" : {
23
+ "mark" : " \" " ,
24
+ "escape" : true
25
+ },
26
+ "excludeFiles" : [
27
+ " node_modules/**/*.js"
28
+ ]
29
+ }
Original file line number Diff line number Diff line change @@ -108,41 +108,15 @@ module.exports = function(grunt) {
108
108
}
109
109
} ,
110
110
jscs : {
111
- files : {
112
- src : [
113
- "Gruntfile.js" ,
114
- "lib/**/!(johnny-five)*.js" ,
115
- "test/**/*.js" ,
116
- "eg/**/*.js" ,
117
- ]
118
- } ,
111
+ src : [
112
+ "Gruntfile.js" ,
113
+ "lib/**/!(johnny-five)*.js" ,
114
+ "test/**/*.js" ,
115
+ "eg/**/*.js" ,
116
+ "util/**/*.js"
117
+ ] ,
119
118
options : {
120
- config : ".jscsrc" ,
121
- requireCurlyBraces : [
122
- "if" ,
123
- "else" ,
124
- "for" ,
125
- "while" ,
126
- "do" ,
127
- "try" ,
128
- "catch" ,
129
- ] ,
130
- disallowNewlineBeforeBlockStatements : true ,
131
- requireSpaceBeforeBlockStatements : true ,
132
- requireParenthesesAroundIIFE : true ,
133
- requireSpacesInConditionalExpression : true ,
134
- // requireSpaceBeforeKeywords: true,
135
- requireSpaceAfterKeywords : [
136
- "if" , "else" ,
137
- "switch" , "case" ,
138
- "try" , "catch" ,
139
- "do" , "while" , "for" ,
140
- "return" , "typeof" , "void" ,
141
- ] ,
142
- validateQuoteMarks : {
143
- mark : "\"" ,
144
- escape : true
145
- }
119
+ config : ".jscsrc"
146
120
}
147
121
} ,
148
122
jsbeautifier : {
Original file line number Diff line number Diff line change @@ -45,18 +45,17 @@ var args = optimist
45
45
46
46
if ( args . help ) {
47
47
optimist . showHelp ( ) ;
48
- return process . exit ( - 1 ) ;
48
+ process . exit ( - 1 ) ;
49
49
}
50
50
51
51
if ( ! args . portname ) {
52
52
console . error ( "Serial port name is required. \n `-p /dev/PORTNAME` \n Use one of the following" ) ;
53
- serialport . list ( function ( err , data ) {
54
- data . forEach ( function ( v ) {
53
+ serialport . list ( function ( err , data ) {
54
+ data . forEach ( function ( v ) {
55
55
console . log ( "\t" + v . comName ) ;
56
56
} ) ;
57
- return process . exit ( - 1 ) ;
58
57
} ) ;
59
- return ;
58
+ process . exit ( - 1 ) ;
60
59
}
61
60
62
61
var guardTime = args . guardtime * 1000 ;
@@ -76,8 +75,8 @@ var open = function (cb) {
76
75
port . once ( "open" , cb ) ;
77
76
} ;
78
77
79
- var wait = function ( ms ) {
80
- return function ( cb ) {
78
+ var wait = function ( ms ) {
79
+ return function ( cb ) {
81
80
setTimeout ( cb , ms ) ;
82
81
} ;
83
82
} ;
@@ -110,16 +109,16 @@ var exit = function () {
110
109
process . exit ( 0 ) ;
111
110
} ;
112
111
113
- var print = function ( str ) {
114
- return function ( cb ) {
112
+ var print = function ( str ) {
113
+ return function ( cb ) {
115
114
console . log ( str ) ;
116
115
cb ( ) ;
117
116
} ;
118
117
} ;
119
118
120
- var printCmd = function ( msg , str ) {
119
+ var printCmd = function ( msg , str ) {
121
120
return function ( cb ) {
122
- readCmd ( str + "\r" ) ( function ( err , data ) {
121
+ readCmd ( str + "\r" ) ( function ( err , data ) {
123
122
console . log ( msg + " (" + str + "): " + data ) ;
124
123
cb ( ) ;
125
124
} ) ;
You can’t perform that action at this time.
0 commit comments