Skip to content

Commit 4bf24c0

Browse files
author
Christopher Hiller
committed
extract jscs config into .jscsrc; resolves #632
- removed JSCS config from `Gruntfile.js`; config now lives in `.jscsrc` - added `util/` to paths covered by JSCS - fixed JSCS errors in `util/xbee.js` - a couple formatting problems - you can't `return` a `process.exit()` call - fixed what appeared to be a logic error when no port name specified; would exit too early - the above three issues were reported by JSCS
1 parent b0a4c70 commit 4bf24c0

File tree

3 files changed

+47
-45
lines changed

3 files changed

+47
-45
lines changed

.jscsrc

+29
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
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+
}

Gruntfile.js

+8-34
Original file line numberDiff line numberDiff line change
@@ -108,41 +108,15 @@ module.exports = function(grunt) {
108108
}
109109
},
110110
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+
],
119118
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"
146120
}
147121
},
148122
jsbeautifier: {

util/xbee.js

+10-11
Original file line numberDiff line numberDiff line change
@@ -45,18 +45,17 @@ var args = optimist
4545

4646
if (args.help) {
4747
optimist.showHelp();
48-
return process.exit(-1);
48+
process.exit(-1);
4949
}
5050

5151
if (!args.portname) {
5252
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) {
5555
console.log("\t" + v.comName);
5656
});
57-
return process.exit(-1);
5857
});
59-
return;
58+
process.exit(-1);
6059
}
6160

6261
var guardTime = args.guardtime * 1000;
@@ -76,8 +75,8 @@ var open = function (cb) {
7675
port.once("open", cb);
7776
};
7877

79-
var wait = function(ms) {
80-
return function(cb) {
78+
var wait = function (ms) {
79+
return function (cb) {
8180
setTimeout(cb, ms);
8281
};
8382
};
@@ -110,16 +109,16 @@ var exit = function () {
110109
process.exit(0);
111110
};
112111

113-
var print = function(str) {
114-
return function(cb){
112+
var print = function (str) {
113+
return function (cb) {
115114
console.log(str);
116115
cb();
117116
};
118117
};
119118

120-
var printCmd = function(msg, str) {
119+
var printCmd = function (msg, str) {
121120
return function (cb) {
122-
readCmd(str + "\r")(function(err, data){
121+
readCmd(str + "\r")(function (err, data) {
123122
console.log(msg + " (" + str + "): " + data);
124123
cb();
125124
});

0 commit comments

Comments
 (0)