diff --git a/lib/builder.js b/lib/builder.js
index 0387106b..b59dbf3a 100644
--- a/lib/builder.js
+++ b/lib/builder.js
@@ -17,8 +17,6 @@ based templates to generate static HTML content
*/
YUI.add('doc-builder', function (Y) {
- /*jshint onevar:false */
-
var fixType = Y.Lang.fixType,
print = function (items) {
var out = '
';
diff --git a/lib/options.js b/lib/options.js
index 65cd57fc..72bea37a 100644
--- a/lib/options.js
+++ b/lib/options.js
@@ -20,8 +20,6 @@ YUI.add('options', function (Y) {
* @return {Object} The config object
*/
Y.Options = function (args) {
- /*jshint onevar:false */
-
var options = {
port: 3000,
nocode: false
diff --git a/lib/project.js b/lib/project.js
index 422d9e82..89ed07f2 100644
--- a/lib/project.js
+++ b/lib/project.js
@@ -53,7 +53,6 @@ YUI.add('project', function (Y) {
}
if (typeof options.tabtospace === 'number') {
- /*jshint onevar:false */
options.tabspace = '';
for (var s = 0; s < options.tabtospace; s++) {
options.tabspace += ' ';
diff --git a/lib/utils.js b/lib/utils.js
index 84c088dc..12e7eb99 100644
--- a/lib/utils.js
+++ b/lib/utils.js
@@ -3,7 +3,6 @@
* Code licensed under the BSD License:
* https://github.com/yui/yuidoc/blob/master/LICENSE
*/
-/*jshint onevar:false */
var path = require('path'),
minimatch = require('minimatch'),
fs = require('graceful-fs');
diff --git a/package.json b/package.json
index ab1db836..25c18b07 100644
--- a/package.json
+++ b/package.json
@@ -114,8 +114,6 @@
"noarg": true,
"node": true,
"noempty": true,
- "onevar": true,
- "trailing": true,
"undef": true,
"unused": "vars",
"yui": true