Skip to content

Commit e38637d

Browse files
committed
lint
1 parent 5b0a390 commit e38637d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/kit/src/core/config/options.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -231,7 +231,7 @@ const options = object(
231231

232232
// TODO: remove this for the 1.0 release
233233
force: validate(undefined, (input, keypath) => {
234-
if (typeof input !== undefined) {
234+
if (typeof input !== 'undefined') {
235235
const newSetting = input ? 'continue' : 'fail';
236236
const needsSetting = newSetting === 'continue';
237237
throw new Error(

0 commit comments

Comments
 (0)