From 4b1aaa50d2295ad731b4a04279b1ba2daed2fed4 Mon Sep 17 00:00:00 2001 From: EVILLT Date: Sun, 5 May 2019 15:19:05 +0800 Subject: [PATCH] fix: properly disable eslint (#9) `const useLinter = eslint !== 'disabled'` --- saofile.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/saofile.js b/saofile.js index c4e1061..59d3fd9 100644 --- a/saofile.js +++ b/saofile.js @@ -72,7 +72,7 @@ module.exports = { message: 'Choose an ESLint tool', type: 'list', default: 'xo', - choices: ['xo', 'standard', 'disable'] + choices: ['xo', 'standard', 'disabled'] }, { name: 'compile',