From ba829a9c5bd65932e1c067fd0b77e1fa9b18a342 Mon Sep 17 00:00:00 2001 From: Sosuke Suzuki Date: Sat, 7 May 2022 16:52:20 +0900 Subject: [PATCH] Fix properties order of `options` --- src/cli/constant.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/cli/constant.js b/src/cli/constant.js index d4952669e1cb..3db0b01dff04 100644 --- a/src/cli/constant.js +++ b/src/cli/constant.js @@ -72,14 +72,14 @@ const categoryOrder = [ /* eslint sort-keys: "error" */ const options = { cache: { - type: "boolean", default: false, description: "Only format changed files", + type: "boolean", }, "cache-location": { - type: "path", - description: "Path to the cache file or directory", default: ".prettiercache", + description: "Path to the cache file or directory", + type: "path", }, check: { alias: "c",