2012-10-04 19:48:24 +02:00
|
|
|
"use strict";
|
|
|
|
|
2012-10-04 07:45:44 +02:00
|
|
|
// Global variables, categorized by place of definition.
|
|
|
|
var globals =
|
|
|
|
// Third-party libraries
|
2013-02-15 21:35:29 +01:00
|
|
|
' $ jQuery Spinner Handlebars XDate'
|
2012-10-04 07:45:44 +02:00
|
|
|
|
|
|
|
// index.html
|
2012-10-10 23:26:01 +02:00
|
|
|
+ ' initial_pointer email stream_list people_list have_initial_messages'
|
2013-01-16 00:52:57 +01:00
|
|
|
+ ' fullname desktop_notifications_enabled domain poll_timeout lurk_stream'
|
2012-10-04 07:45:44 +02:00
|
|
|
|
2012-10-18 20:29:16 +02:00
|
|
|
// common.js
|
|
|
|
+ ' status_classes'
|
|
|
|
|
2012-10-04 07:45:44 +02:00
|
|
|
// setup.js
|
2013-01-16 19:37:50 +01:00
|
|
|
+ ' templates csrf_token'
|
2012-10-04 07:45:44 +02:00
|
|
|
|
2013-02-19 05:11:13 +01:00
|
|
|
// Modules, defined in their respective files.
|
|
|
|
+ ' compose rows hotkeys narrow reload notifications_bar search subs'
|
|
|
|
+ ' composebox_typeahead typeahead_helper notifications hashchange'
|
2012-12-05 23:54:49 +01:00
|
|
|
+ ' invite ui util activity timerender MessageList'
|
2013-02-07 19:57:45 +01:00
|
|
|
|
2013-02-16 09:43:27 +01:00
|
|
|
// colorspace.js
|
|
|
|
+ ' colorspace'
|
|
|
|
|
2013-02-13 22:04:35 +01:00
|
|
|
// tutorial.js
|
|
|
|
+ ' tutorial'
|
|
|
|
|
2012-10-04 07:45:44 +02:00
|
|
|
// zephyr.js
|
2013-02-12 20:01:24 +01:00
|
|
|
+ ' all_msg_list narrowed_msg_list current_msg_list get_updates_params'
|
2012-11-27 22:30:47 +01:00
|
|
|
+ ' clear_table add_to_table add_messages'
|
2013-02-15 00:23:56 +01:00
|
|
|
+ ' subject_dict people_dict same_recipient same_stream_and_subject'
|
2012-10-10 20:20:31 +02:00
|
|
|
+ ' keep_pointer_in_view move_pointer_at_page_top_and_bottom'
|
|
|
|
+ ' respond_to_message'
|
2013-02-20 18:33:04 +01:00
|
|
|
+ ' select_message'
|
2012-12-03 19:49:12 +01:00
|
|
|
+ ' scroll_to_selected disable_pointer_movement get_private_message_recipient'
|
2012-11-19 17:43:46 +01:00
|
|
|
+ ' load_old_messages'
|
2012-10-05 22:29:59 +02:00
|
|
|
+ ' at_top_of_viewport at_bottom_of_viewport'
|
2012-10-16 04:07:52 +02:00
|
|
|
+ ' viewport'
|
2012-11-27 23:17:30 +01:00
|
|
|
+ ' load_more_messages reset_load_more_status have_scrolled_away_from_top'
|
2013-02-15 04:53:03 +01:00
|
|
|
+ ' total_unread_messages'
|
2013-02-12 22:32:14 +01:00
|
|
|
+ ' maybe_scroll_to_selected recenter_pointer_on_display suppress_scroll_pointer_update'
|
2013-02-20 19:35:15 +01:00
|
|
|
+ ' process_unread_counts message_range message_in_table'
|
2012-10-04 07:45:44 +02:00
|
|
|
;
|
|
|
|
|
|
|
|
|
2013-02-19 04:40:57 +01:00
|
|
|
var options = {
|
2012-10-04 07:45:44 +02:00
|
|
|
vars: true, // Allow multiple 'var' per function
|
|
|
|
sloppy: true, // Don't require "use strict"
|
|
|
|
white: true, // Lenient whitespace rules
|
|
|
|
plusplus: true, // Allow increment/decrement operators
|
|
|
|
regexp: true, // Allow . and [^...] in regular expressions
|
|
|
|
todo: true, // Allow "TODO" comments.
|
2013-02-12 21:41:59 +01:00
|
|
|
newcap: true, // Don't assume that capitalized functions are
|
|
|
|
// constructors (and the converse)
|
2013-02-19 04:40:57 +01:00
|
|
|
nomen: true, // Tolerate underscore at the beginning of a name
|
|
|
|
stupid: true // Allow synchronous methods
|
2012-10-04 07:45:44 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
// For each error.raw message, we can return 'true' to ignore
|
|
|
|
// the error.
|
|
|
|
var exceptions = {
|
|
|
|
"Expected '{a}' and instead saw '{b}'." : function (error) {
|
|
|
|
// We allow single-statement 'if' with no brace.
|
|
|
|
// This exception might be overly broad but oh well.
|
|
|
|
return (error.a === '{');
|
|
|
|
},
|
|
|
|
|
|
|
|
"Unexpected 'else' after 'return'." : function () {
|
|
|
|
return true;
|
2013-02-12 23:26:25 +01:00
|
|
|
},
|
|
|
|
|
|
|
|
"Don't make functions within a loop." : function () {
|
|
|
|
return true;
|
2012-10-04 07:45:44 +02:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
var fs = require('fs');
|
2012-10-04 19:15:37 +02:00
|
|
|
var path = require('path');
|
|
|
|
var JSLINT = require(path.join(__dirname, 'jslint')).JSLINT;
|
2012-10-04 07:45:44 +02:00
|
|
|
|
2012-10-04 19:40:29 +02:00
|
|
|
var cwd = process.cwd();
|
2012-10-04 07:45:44 +02:00
|
|
|
|
|
|
|
var exit_code = 0;
|
2013-02-19 04:40:57 +01:00
|
|
|
var i;
|
2012-10-04 07:45:44 +02:00
|
|
|
|
2013-02-19 04:40:57 +01:00
|
|
|
// Drop 'node' and the script name from args.
|
|
|
|
for (i=0; i<2; i++) {
|
|
|
|
process.argv.shift();
|
|
|
|
}
|
2012-10-04 07:45:44 +02:00
|
|
|
|
2013-02-19 04:40:57 +01:00
|
|
|
process.argv.forEach(function (filepath) {
|
2012-10-04 19:40:29 +02:00
|
|
|
var contents = fs.readFileSync(filepath, 'utf8');
|
2012-10-04 07:45:44 +02:00
|
|
|
var messages = [];
|
|
|
|
|
2013-02-19 04:40:57 +01:00
|
|
|
// We mutate 'options' so be sure to clear everything.
|
|
|
|
if (filepath.indexOf('zephyr/static/js/') !== -1) {
|
|
|
|
// Frontend browser code
|
|
|
|
options.browser = true;
|
|
|
|
options.node = false;
|
|
|
|
options.predef = globals.split(/\s+/);
|
|
|
|
} else {
|
|
|
|
// Backend code for Node.js
|
|
|
|
options.browser = false;
|
|
|
|
options.node = true;
|
|
|
|
|
|
|
|
if (filepath.indexOf('zephyr/tests/frontend/') !== -1) {
|
|
|
|
// Include '$' because we use jQuery inside casper.evaluate
|
|
|
|
options.predef = ['casper', '$'];
|
|
|
|
} else {
|
|
|
|
options.predef = [];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!JSLINT(contents, options)) {
|
2012-10-04 07:45:44 +02:00
|
|
|
JSLINT.errors.forEach(function (error) {
|
|
|
|
if (error === null) {
|
|
|
|
// JSLint stopping error
|
|
|
|
messages.push(' (JSLint giving up)');
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
var exn = exceptions[error.raw];
|
|
|
|
if (exn && exn(error)) {
|
|
|
|
// Ignore this error.
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// NB: this will break on a 10,000 line file
|
|
|
|
var line = (' ' + error.line).slice(-4);
|
|
|
|
|
|
|
|
messages.push(' ' + line + ' ' + error.reason);
|
|
|
|
});
|
|
|
|
|
|
|
|
if (messages.length > 0) {
|
|
|
|
exit_code = 1;
|
|
|
|
|
2012-10-04 19:40:29 +02:00
|
|
|
console.log(path.relative(cwd, filepath));
|
2012-10-04 07:45:44 +02:00
|
|
|
|
|
|
|
// Something very wacky happens if we do
|
|
|
|
// .forEach(console.log) directly.
|
|
|
|
messages.forEach(function (msg) {
|
|
|
|
console.log(msg);
|
|
|
|
});
|
|
|
|
|
|
|
|
console.log('');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
process.exit(exit_code);
|