Created
April 8, 2014 00:52
-
-
Save eskim/10078620 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Show hidden characters
{ | |
/* | |
* ENVIRONMENTS | |
* ================= | |
*/ | |
// Define globals exposed by modern browsers. | |
"browser": true, | |
// Define globals exposed by jQuery. | |
"jquery": true, | |
// Define globals exposed by Node.js. | |
"node": true, | |
"predef": [ | |
"Handlebars", | |
"moment", | |
"Meteor", | |
"Accounts", | |
"Session", | |
"Template", | |
"check", | |
"Match", | |
"Deps", | |
"EJSON", | |
"Email", | |
"Package", | |
"Npm", | |
"Assets", | |
"process", | |
"Cento" | |
], | |
/* | |
* ENFORCING OPTIONS | |
* ================= | |
*/ | |
"curly": true, | |
// Force all variable names to use either camelCase style or UPPER_CASE | |
// with underscores. | |
"camelcase": false, | |
// Prohibit use of == and != in favor of === and !==. | |
"eqeqeq": true, | |
// Suppress warnings about == null comparisons. | |
"eqnull": true, | |
// Enforce tab width of 2 spaces. | |
"indent": 2, | |
// Prohibit use of a variable before it is defined. | |
"latedef": true, | |
// Require capitalized names for constructor functions. | |
"newcap": true, | |
// Enforce use of single quotation marks for strings. | |
// "quotmark": "single", | |
// Prohibit trailing whitespace. | |
"trailing": true, | |
// Prohibit use of explicitly undeclared variables. | |
"undef": true, | |
// Warn when variables are defined but never used. | |
"unused": true, | |
// Enforce line length to 80 characters | |
"maxlen": 120, | |
// Enforce placing 'use strict' at the top function scope | |
"strict": false | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment