Skip to content

Commit 1480701

Browse files
committed
Merge pull request YahooArchive#46 from jedireza/jscs-lint
More code style consistency
2 parents d75bc4b + 6a3088e commit 1480701

26 files changed

+126
-80
lines changed

.jscsrc

+62
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,62 @@
1+
{
2+
"excludeFiles": [
3+
"./node_modules/**",
4+
"./chat/build/**",
5+
"./routing/build/**"
6+
],
7+
"disallowMixedSpacesAndTabs": true,
8+
"disallowNewlineBeforeBlockStatements": true,
9+
"disallowPaddingNewlinesInBlocks": true,
10+
"disallowSpaceAfterObjectKeys": true,
11+
"disallowTrailingComma": true,
12+
13+
"maximumLineLength": {
14+
"value": 120,
15+
"allowComments": true,
16+
"allowUrlComments": true,
17+
"allowRegex": true
18+
},
19+
20+
"requireBlocksOnNewline": true,
21+
"requireCamelCaseOrUpperCaseIdentifiers": "ignoreProperties",
22+
"requireCapitalizedConstructors": true,
23+
"requireCommaBeforeLineBreak": true,
24+
"requireSpaceAfterKeywords": [
25+
"if",
26+
"else",
27+
"for",
28+
"while",
29+
"do",
30+
"switch",
31+
"return",
32+
"try",
33+
"catch"
34+
],
35+
"requireSpaceAfterLineComment": true,
36+
"requireSpaceBeforeBlockStatements": true,
37+
"requireSpacesInConditionalExpression": {
38+
"afterTest": true,
39+
"beforeConsequent": true,
40+
"afterConsequent": true,
41+
"beforeAlternate": true
42+
},
43+
"requireSpacesInAnonymousFunctionExpression": {
44+
"beforeOpeningCurlyBrace": true
45+
},
46+
"requireSpacesInFunctionExpression": {
47+
"beforeOpeningCurlyBrace": true
48+
},
49+
"requireSpacesInNamedFunctionExpression": {
50+
"beforeOpeningCurlyBrace": true
51+
},
52+
53+
"safeContextKeyword": ["self"],
54+
55+
"validateIndentation": 4,
56+
"validateJSDoc": {
57+
"checkParamNames": true,
58+
"checkRedundantParams": true,
59+
"requireParamTypes": true
60+
},
61+
"validateQuoteMarks": { "mark": "'", "escape": true }
62+
}

chat/actions/createMessage.js

+2-3
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,8 @@
33
* Copyrights licensed under the New BSD License. See the accompanying LICENSE file for terms.
44
*/
55
'use strict';
6-
7-
var debug = require('debug')('Example:createMessageAction'),
8-
ThreadStore = require('../stores/ThreadStore');
6+
var debug = require('debug')('Example:createMessageAction');
7+
var ThreadStore = require('../stores/ThreadStore');
98

109
module.exports = function (context, payload, done) {
1110
var threadStore = context.getStore(ThreadStore);

chat/actions/openThread.js

+2-3
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,8 @@
33
* Copyrights licensed under the New BSD License. See the accompanying LICENSE file for terms.
44
*/
55
'use strict';
6-
7-
var debug = require('debug')('Example:openThreadAction'),
8-
ThreadStore = require('../stores/ThreadStore');
6+
var debug = require('debug')('Example:openThreadAction');
7+
var ThreadStore = require('../stores/ThreadStore');
98

109
module.exports = function (context, payload, done) {
1110
debug('dispatching OPEN_THREAD', payload);

chat/actions/showChat.js

+3-4
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,9 @@
33
* Copyrights licensed under the New BSD License. See the accompanying LICENSE file for terms.
44
*/
55
'use strict';
6-
7-
var debug = require('debug')('Example:showChatAction'),
8-
ThreadStore = require('../stores/ThreadStore'),
9-
openThread = require('./openThread');
6+
var debug = require('debug')('Example:showChatAction');
7+
var ThreadStore = require('../stores/ThreadStore');
8+
var openThread = require('./openThread');
109

1110
module.exports = function (context, payload, done) {
1211
context.dispatch('SHOW_CHAT_START');

chat/components/ChatApp.jsx

+1-3
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,8 @@
1212
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1313
* See the License for the specific language governing permissions and
1414
* limitations under the License.
15-
*
16-
* @jsx React.DOM
1715
*/
18-
16+
'use strict';
1917
var MessageSection = require('./MessageSection.jsx');
2018
var React = require('react');
2119
var ThreadSection = require('./ThreadSection.jsx');

chat/components/Head.jsx

+4-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
1+
/**
2+
* Copyright 2014, Yahoo! Inc.
3+
* Copyrights licensed under the New BSD License. See the accompanying LICENSE file for terms.
4+
*/
15
'use strict';
2-
36
var React = require('react');
47

58
/**

chat/components/MessageComposer.jsx

+1-3
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,8 @@
1212
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1313
* See the License for the specific language governing permissions and
1414
* limitations under the License.
15-
*
16-
* @jsx React.DOM
1715
*/
18-
16+
'use strict';
1917
var React = require('react');
2018
var createMessage = require('../actions/createMessage');
2119

chat/components/MessageListItem.jsx

+1-3
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,8 @@
1212
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1313
* See the License for the specific language governing permissions and
1414
* limitations under the License.
15-
*
16-
* @jsx React.DOM
1715
*/
18-
16+
'use strict';
1917
var React = require('react');
2018

2119
var ReactPropTypes = React.PropTypes;

chat/components/MessageSection.jsx

+1-3
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,8 @@
1212
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1313
* See the License for the specific language governing permissions and
1414
* limitations under the License.
15-
*
16-
* @jsx React.DOM
1715
*/
18-
16+
'use strict';
1917
var MessageComposer = require('./MessageComposer.jsx');
2018
var MessageListItem = require('./MessageListItem.jsx');
2119
var MessageStore = require('../stores/MessageStore');

chat/components/ThreadListItem.jsx

+1-3
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,8 @@
1212
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1313
* See the License for the specific language governing permissions and
1414
* limitations under the License.
15-
*
16-
* @jsx React.DOM
1715
*/
18-
16+
'use strict';
1917
var React = require('react');
2018
var cx = require('react/lib/cx');
2119
var openThread = require('../actions/openThread');

chat/components/ThreadSection.jsx

+1-3
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,8 @@
1212
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1313
* See the License for the specific language governing permissions and
1414
* limitations under the License.
15-
*
16-
* @jsx React.DOM
1715
*/
18-
16+
'use strict';
1917
var React = require('react');
2018
var MessageStore = require('../stores/MessageStore');
2119
var ThreadListItem = require('../components/ThreadListItem.jsx');

chat/services/message.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ var _messages = [
6565

6666
module.exports = {
6767
name: 'message',
68-
//At least one of the CRUD methods is required
68+
// at least one of the CRUD methods is required
6969
read: function(req, resource, params, config, callback) {
7070
setTimeout(function () {
7171
callback(null, JSON.parse(JSON.stringify(_messages)));
@@ -84,7 +84,7 @@ module.exports = {
8484
callback(null, _messages);
8585
}, 10);
8686
}
87-
//update: function(resource, params, body, config, callback) {},
88-
//delete: function(resource, params, config, callback) {}
87+
// update: function(resource, params, body, config, callback) {},
88+
// delete: function(resource, params, config, callback) {}
8989

9090
};

chat/stores/MessageStore.js

+6-7
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,10 @@
33
* Copyrights licensed under the New BSD License. See the accompanying LICENSE file for terms.
44
*/
55
'use strict';
6-
7-
var util = require('util'),
8-
BaseStore = require('fluxible-app/utils/BaseStore'),
9-
debug = require('debug')('Example:MessageStore'),
10-
ThreadStore = require('./ThreadStore');
6+
var util = require('util');
7+
var BaseStore = require('fluxible-app/utils/BaseStore');
8+
var debug = require('debug')('Example:MessageStore');
9+
var ThreadStore = require('./ThreadStore');
1110

1211
function MessageStore(dispatcher) {
1312
this.dispatcher = dispatcher;
@@ -61,8 +60,8 @@ MessageStore.prototype.get = function (id) {
6160
};
6261

6362
MessageStore.prototype.getAllForThread = function(threadID) {
64-
var self = this,
65-
threadMessages = [];
63+
var self = this;
64+
var threadMessages = [];
6665
self.sortedByDate.forEach(function (key) {
6766
var message = self.messages[key];
6867
if (message.threadID === threadID) {

chat/stores/ThreadStore.js

+5-6
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,9 @@
33
* Copyrights licensed under the New BSD License. See the accompanying LICENSE file for terms.
44
*/
55
'use strict';
6-
7-
var util = require('util'),
8-
BaseStore = require('fluxible-app/utils/BaseStore'),
9-
debug = require('debug')('Example:ThreadStore');
6+
var util = require('util');
7+
var BaseStore = require('fluxible-app/utils/BaseStore');
8+
var debug = require('debug')('Example:ThreadStore');
109

1110
function ThreadStore(dispatcher) {
1211
this.dispatcher = dispatcher;
@@ -40,8 +39,8 @@ ThreadStore.prototype.getAll = function() {
4039
};
4140

4241
ThreadStore.prototype.getAllChrono = function() {
43-
var self = this,
44-
orderedThreads = [];
42+
var self = this;
43+
var orderedThreads = [];
4544

4645
Object.keys(this.threads).forEach(function (key) {
4746
var thread = self.threads[key];

chat/stores/UnreadThreadStore.js

+9-12
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,10 @@
33
* Copyrights licensed under the New BSD License. See the accompanying LICENSE file for terms.
44
*/
55
'use strict';
6-
7-
var util = require('util'),
8-
BaseStore = require('fluxible-app/utils/BaseStore'),
9-
debug = require('debug')('Example:UnreadThreadStore'),
10-
ThreadStore = require('./ThreadStore');
6+
var util = require('util');
7+
var BaseStore = require('fluxible-app/utils/BaseStore');
8+
var debug = require('debug')('Example:UnreadThreadStore');
9+
var ThreadStore = require('./ThreadStore');
1110

1211
function UnreadThreadStore(dispatcher) {
1312
this.dispatcher = dispatcher;
@@ -23,22 +22,20 @@ UnreadThreadStore.handlers = {
2322
util.inherits(UnreadThreadStore, BaseStore);
2423

2524
UnreadThreadStore.prototype.receiveMessages = function (messages) {
26-
var self = this;
27-
self.emitChange();
25+
this.emitChange();
2826
};
2927

3028
UnreadThreadStore.prototype.openThread = function (payload) {
31-
var self = this;
32-
self.emitChange();
29+
this.emitChange();
3330
};
3431

3532
UnreadThreadStore.prototype.getCount = function () {
3633
var threads = this.dispatcher.getStore(ThreadStore).getAll();
3734
var unreadCount = 0;
3835
for (var id in threads) {
39-
if (!threads[id].lastMessage.isRead) {
40-
unreadCount++;
41-
}
36+
if (!threads[id].lastMessage.isRead) {
37+
unreadCount++;
38+
}
4239
}
4340
return unreadCount;
4441
};

chat/webpack.config.js

+4-4
Original file line numberDiff line numberDiff line change
@@ -9,18 +9,18 @@ module.exports = {
99
resolve: {
1010
extensions: ['', '.js', '.jsx']
1111
},
12-
entry: "./client.js",
12+
entry: './client.js',
1313
output: {
1414
path: __dirname+'/build/js',
15-
filename: "client.js"
15+
filename: 'client.js'
1616
},
1717
module: {
1818
loaders: [
19-
{ test: /\.css$/, loader: "style!css" },
19+
{ test: /\.css$/, loader: 'style!css' },
2020
{ test: /\.jsx$/, loader: 'jsx-loader' }
2121
]
2222
},
2323
plugins: [
24-
//new webpack.optimize.UglifyJsPlugin()
24+
// new webpack.optimize.UglifyJsPlugin()
2525
]
2626
};

routing/components/About.jsx

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
1-
/** @jsx React.DOM */
21
/**
32
* Copyright 2014, Yahoo! Inc.
43
* Copyrights licensed under the New BSD License. See the accompanying LICENSE file for terms.
54
*/
6-
5+
'use strict';
76
var React = require('react');
87

98
var About = React.createClass({

routing/components/Application.jsx

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
1-
/** @jsx React.DOM */
21
/**
32
* Copyright 2014, Yahoo! Inc.
43
* Copyrights licensed under the New BSD License. See the accompanying LICENSE file for terms.
54
*/
6-
5+
'use strict';
76
var React = require('react');
87
var Nav = require('./Nav.jsx');
98
var Home = require('./Home.jsx');

routing/components/Head.jsx

+4-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
1+
/**
2+
* Copyright 2014, Yahoo! Inc.
3+
* Copyrights licensed under the New BSD License. See the accompanying LICENSE file for terms.
4+
*/
15
'use strict';
2-
36
var React = require('react');
47

58
/**

routing/components/Home.jsx

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
1-
/** @jsx React.DOM */
21
/**
32
* Copyright 2014, Yahoo! Inc.
43
* Copyrights licensed under the New BSD License. See the accompanying LICENSE file for terms.
54
*/
6-
5+
'use strict';
76
var React = require('react');
87

98
var Home = React.createClass({

routing/components/Nav.jsx

+3-4
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,10 @@
1-
/** @jsx React.DOM */
21
/**
32
* Copyright 2014, Yahoo! Inc.
43
* Copyrights licensed under the New BSD License. See the accompanying LICENSE file for terms.
54
*/
6-
7-
var React = require('react'),
8-
NavLink = require('flux-router-component').NavLink;
5+
'use strict';
6+
var React = require('react');
7+
var NavLink = require('flux-router-component').NavLink;
98

109
var Nav = React.createClass({
1110
getInitialState: function () {

routing/components/Timestamp.jsx

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
1-
/** @jsx React.DOM */
21
/**
32
* Copyright 2014, Yahoo! Inc.
43
* Copyrights licensed under the New BSD License. See the accompanying LICENSE file for terms.
54
*/
6-
5+
'use strict';
76
var React = require('react');
87
var updateTime = require('../actions/updateTime');
98
var TimeStore = require('../stores/TimeStore');

routing/server.js

+1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
* Copyright 2014, Yahoo! Inc.
33
* Copyrights licensed under the New BSD License. See the accompanying LICENSE file for terms.
44
*/
5+
'use strict';
56
require('node-jsx').install({ extension: '.jsx' });
67
var http = require('http');
78
var express = require('express');

0 commit comments

Comments
 (0)