1
0
mirror of https://github.com/mgerb/mywebsite synced 2026-01-12 02:42:48 +00:00
Files
mywebsite/node_modules/mongo-express/.jshintrc

61 lines
1.2 KiB
Plaintext

{
/*
* ENVIRONMENTS
* =================
*/
// Define globals exposed by modern browsers, jQuery & Node.js.
"browser": true,
"jquery": true,
"node": true,
// Define globals used by M Project and Wherewolf
"predef": [
],
/*
* ENFORCING OPTIONS
* =================
*/
// 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": false,
// Force ES3 compliance - radix parameters and trailing commas
"es3":true,
// Enforce tab width of 4 spaces.
"indent": 4,
// Prohibit use of a variable before it is defined.
"latedef": true,
// Enforce line length to 80 characters
"maxlen": 150,
// Require capitalized names for constructor functions.
"newcap": true,
// Enforce use of single quotation marks for strings.
"quotmark": "single",
// Enforce placing 'use strict' at the top function scope
"strict": true,
// Prohibit trailing whitespace.
"trailing": true,
// Prohibit use of explicitly undeclared variables.
"undef": true,
// Warn when variables are defined but never used.
"unused": true
}