forked from cBioPortal/cbioportal
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.jshintrc
More file actions
30 lines (27 loc) · 653 Bytes
/
.jshintrc
File metadata and controls
30 lines (27 loc) · 653 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
/*
Javascript quality check configuration file.
This is a default set of warnings but it was designed to be very configurable
For more details, please take a look at http://jshint.com/docs/
All options are available in here: http://jshint.com/docs/options/
*/
{
"node": true,
"esnext": true,
"bitwise": true,
"camelcase": true,
"curly": true,
"eqeqeq": true,
"immed": true,
"indent": 4,
"latedef": true,
"newcap": true,
"noarg": true,
"quotmark": "single",
"regexp": true,
"undef": true,
"unused": false,
"strict": true,
"trailing": true,
"smarttabs": true,
"white": true
}