mirror of
https://github.com/ansible/awx.git
synced 2024-11-02 01:21:21 +03:00
22 lines
673 B
Plaintext
22 lines
673 B
Plaintext
{
|
|
// Details: https://github.com/victorporof/Sublime-JSHint#using-your-own-jshintrc-options
|
|
// Example: https://github.com/jshint/jshint/blob/master/examples/.jshintrc
|
|
// Documentation: http://www.jshint.com/docs/
|
|
|
|
"browser": true,
|
|
"jquery": true,
|
|
"esnext": true,
|
|
"globalstrict": true,
|
|
"globals": { "angular":false, "alert":false, "$AnsibleConfig":true, "$basePath":true, "jsyaml":false, "_":false, "d3":false, "Donut3D":false },
|
|
"strict": false,
|
|
"quotmark": false,
|
|
"smarttabs": true,
|
|
"trailing": true,
|
|
"undef": true,
|
|
"unused": true,
|
|
"eqeqeq": true,
|
|
"indent": 4,
|
|
"onevar": true,
|
|
"newcap": false
|
|
}
|