Skip to content

Commit

Permalink
Fix properties order of options
Browse files Browse the repository at this point in the history
  • Loading branch information
sosukesuzuki committed May 7, 2022
1 parent 5062fd3 commit ba829a9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/cli/constant.js
Expand Up @@ -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",
Expand Down

0 comments on commit ba829a9

Please sign in to comment.