buddypress/.jshintrc
Paul Gibbs 97ff4e96da Tools: remove deprecated and unsupported parameters from the JSHint configuration.
Re-instating support for these options will likely come with a switch to a different JS code linter.
See #6265 for details.

Fixes #6265, props netweb

git-svn-id: https://buddypress.svn.wordpress.org/trunk@9565 cdf35c40-ae34-48e0-9cc9-0c9da1808c22
2015-02-28 11:27:50 +00:00

23 lines
No EOL
310 B
Text

{
"boss": true,
"curly": true,
"eqeqeq": true,
"eqnull": true,
"es3": true,
"expr": true,
"immed": true,
"noarg": true,
"quotmark": "single",
"undef": true,
"unused": true,
"browser": true,
"globals": {
"_": false,
"ajaxurl": false,
"Backbone": false,
"jQuery": false,
"wp": false
}
}