source: node_modules/xtend/.jshintrc

main
Last change on this file was d24f17c, checked in by Aleksandar Panovski <apano77@…>, 15 months ago

Initial commit

  • Property mode set to 100644
File size: 545 bytes
Line 
1{
2 "maxdepth": 4,
3 "maxstatements": 200,
4 "maxcomplexity": 12,
5 "maxlen": 80,
6 "maxparams": 5,
7
8 "curly": true,
9 "eqeqeq": true,
10 "immed": true,
11 "latedef": false,
12 "noarg": true,
13 "noempty": true,
14 "nonew": true,
15 "undef": true,
16 "unused": "vars",
17 "trailing": true,
18
19 "quotmark": true,
20 "expr": true,
21 "asi": true,
22
23 "browser": false,
24 "esnext": true,
25 "devel": false,
26 "node": false,
27 "nonstandard": false,
28
29 "predef": ["require", "module", "__dirname", "__filename"]
30}
Note: See TracBrowser for help on using the repository browser.