forked from binarykitchen/avconv
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
e6930e8
commit 9500139
Showing
5 changed files
with
124 additions
and
49 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
{ | ||
// Example: https://github.com/jshint/jshint/blob/master/examples/.jshintrc | ||
// Documentation: http://www.jshint.com/docs/ | ||
|
||
"maxerr" : 30, // {int} Maximum error before stopping | ||
|
||
// Enforcing | ||
|
||
"indent" : 4, // {int} Number of spaces to use for indentation | ||
"latedef" : true, // true: Require variables/functions to be defined before being used | ||
"newcap" : true, // true: Require capitalization of all constructor functions e.g. `new F()` | ||
"strict" : false, // Require `use strict` pragma in every file. | ||
"quotmark" : false, // Quotation mark consistency | ||
|
||
// Relaxing | ||
"shadow" : true, // true: Allows re-define variables later in code e.g. `var x=1; x=2;` | ||
"supernew" : true, // true: Tolerate `new function () { ... };` and `new Object;` | ||
|
||
|
||
"loopfunc" : true, // true: Tolerate functions being defined in loops | ||
|
||
// Environments | ||
"browser" : true, // Web Browser (window, document, etc) | ||
"devel" : true, // Development/debugging (alert, confirm, etc) | ||
"node" : true, // Node.js | ||
"-W008" : true, // A leading decimal point can be confused with a dot | ||
|
||
// mh: disabled for now because of switch case block issue: | ||
// https://github.com/jshint/jshint/issues/935 | ||
"indent": false, | ||
|
||
// Custom globals | ||
"predef": [ | ||
"define", | ||
"suite", | ||
"suiteSetup", | ||
"test" | ||
] | ||
} |
This file contains 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
This file contains 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
This file contains 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
This file contains 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