From 6da6326a160e06e3e337d838d6ead632deeb651e Mon Sep 17 00:00:00 2001 From: Waldir Pimenta Date: Sun, 12 May 2019 15:34:53 +0100 Subject: [PATCH] xo: reword descriptions (#3012) --- pages/common/xo.md | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/pages/common/xo.md b/pages/common/xo.md index cfc931100..8a9f15457 100644 --- a/pages/common/xo.md +++ b/pages/common/xo.md @@ -1,23 +1,23 @@ # xo -> A pluggable zero configuration linting utility for JavaScript. +> A pluggable, zero-configuration linting utility for JavaScript. -- Lint files in "src": +- Lint files in the "src" directory: `xo` -- Lint on a gives set of files: +- Lint a given set of files: -`xo {{filename}}.js {{filename1}}.js` +`xo {{file1}}.js {{file2}}.js` -- Fix lint issues: +- Automatically fix any lint issues found: `xo --fix` -- Lint with spaces as indentation instead of tabs: +- Lint using spaces as indentation instead of tabs: `xo --space` -- Lint with prettier code style: +- Lint using the "prettier" code style: `xo --prettier`