mirror of
https://github.com/mgerb/mywebsite
synced 2026-01-11 18:32:50 +00:00
59 lines
1.1 KiB
Plaintext
59 lines
1.1 KiB
Plaintext
{
|
|
/*
|
|
* ENVIRONMENTS
|
|
* =================
|
|
*/
|
|
|
|
// Define globals exposed by modern browsers, jQuery & Node.js.
|
|
"browser": true,
|
|
"jquery": true,
|
|
"node": true,
|
|
|
|
// Define globals
|
|
"predef": [
|
|
"JSON"
|
|
],
|
|
|
|
/*
|
|
* 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,
|
|
|
|
// 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
|
|
}
|