Skip to content

Commit

Permalink
Move JSHint-only hints to the /*jshint*/ comment, and make the hints …
Browse files Browse the repository at this point in the history
…between files more consistent.
  • Loading branch information
brendanlong committed Apr 12, 2014
1 parent a38dcfa commit 76c4fd5
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
7 changes: 4 additions & 3 deletions lib/mpegtssections.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,10 @@
* POSSIBILITY OF SUCH DAMAGE.
*/
/*jslint browser: true, node: true, bitwise: true, plusplus: true, vars: true,
indent: 4, maxlen: 80, strict: true, shadow: true, camelcase: true,
curly: true, quotmark: double, latedef: true, undef: true, unused: true,
trailing: true */
white: true, indent: 4, maxlen: 80 */
/*jshint strict: true, shadow: true, camelcase: true, curly: true,
quotmark: double, latedef: true, undef: true, unused: true, trailing: true */
/*global Uint8Array */
(function (exports) {
"use strict";

Expand Down
4 changes: 3 additions & 1 deletion test/tests.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,10 @@
* POSSIBILITY OF SUCH DAMAGE.
*/
/*jslint browser: true, node: true, bitwise: true, plusplus: true, vars: true,
indent: 4, strict: true, shadow: true, camelcase: true, curly: true,
white: true, indent: 4 */
/*jshint strict: true, shadow: true, camelcase: true, curly: true,
quotmark: double, latedef: true, undef: true, unused: true, trailing: true */
/*global Uint8Array */
"use strict";
var MpegTs = require("../lib/mpegtssections");

Expand Down

0 comments on commit 76c4fd5

Please sign in to comment.