1
0
mirror of https://github.com/ansible/awx.git synced 2024-11-02 09:51:09 +03:00
awx/.jshintrc

33 lines
615 B
Plaintext
Raw Normal View History

{
"browser": true,
"jquery": true,
"esnext": true,
"globalstrict": true,
2015-01-30 23:08:28 +03:00
"curly": true,
"immed": true,
"latedef": "nofunc",
"noarg": true,
"nonew": true,
2015-02-04 17:38:54 +03:00
"maxerr": 10000,
2015-01-30 23:08:28 +03:00
"notypeof": true,
"globals": {
"angular":false,
"alert":false,
"$AnsibleConfig":true,
"$basePath":true,
"jsyaml":false,
"_":false,
"d3":false,
"Donut3D":false,
"nv":false
},
"strict": false,
"quotmark": false,
"trailing": true,
"undef": true,
"unused": true,
"eqeqeq": true,
"indent": 4,
"newcap": false
}