Last active
June 12, 2019 20:08
-
-
Save peterdemartini/b2f40e0eef243b542418 to your computer and use it in GitHub Desktop.
My .jshintrc for Node.js and clean JavaScript
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
{ | |
"passfail": false, // Stop on first error | |
"maxerr": 100, // Maximum error before stopping | |
"node": true, // Enable globals available when code is running inside of the NodeJS runtime environment. | |
"browser": true, // Standard browser globals e.g. `window`, `document`. | |
"esnext": true, // Allow ES.next specific features such as `const` and `let`. | |
"bitwise": false, // Prohibit bitwise operators (&, |, ^, etc.). | |
"camelcase": false, // Permit only camelcase for `var` and `object indexes`. | |
"curly": false, // Require {} for every new block or scope. | |
"eqeqeq": true, // Require triple equals i.e. `===`. | |
"immed": true, // Require immediate invocations to be wrapped in parens e.g. `( function(){}() );` | |
"latedef": true, // Prohibit variable use before definition. | |
"newcap": true, // Require capitalization of all constructor functions e.g. `new F()`. | |
"noarg": true, // Prohibit use of `arguments.caller` and `arguments.callee`. | |
"quotmark": "single", // Define quotes to string values. | |
"regexp": true, // Prohibit `.` and `[^...]` in regular expressions. | |
"unused": true, // Warn unused variables. | |
"strict": true, // Require `use strict` pragma in every file. | |
"trailing": true, // Prohibit trailing whitespaces. | |
"smarttabs": false, // Suppresses warnings about mixed tabs and spaces | |
"eqnull": false, // Tolerate use of `== null` | |
"evil": false, // Tolerate use of `eval` | |
"shadow": false, // Allows re-define variables later in code e.g. `var x=1; x=2;` | |
"undef": true, // Require all non-global variables be declared before they are used | |
"globals": { // Globals variables. | |
"angular": true | |
}, | |
"predef": [ // Extra globals. | |
"define", | |
"require", | |
"exports", | |
"module", | |
"describe", | |
"before", | |
"beforeEach", | |
"after", | |
"afterEach", | |
"it", | |
"inject", | |
"expect" | |
], | |
"indent": 4, // Specify indentation spacing | |
"devel": true, // Allow development statements e.g. `console.log();`. | |
"noempty": true // Prohibit use of empty blocks. | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment