From a0ac03e560d292e1685bbc32b5a09066b65aea86 Mon Sep 17 00:00:00 2001 From: andrewmcodes Date: Mon, 17 Sep 2018 21:04:45 -0400 Subject: [PATCH 1/2] fix docs to reflect how to lint with rubocop --- README.md | 2 -- 1 file changed, 2 deletions(-) diff --git a/README.md b/README.md index 0dd78ab82..86a0266f3 100644 --- a/README.md +++ b/README.md @@ -112,7 +112,6 @@ Enable each one in your workspace or user settings: }, "rubocop": { "only": ["SpaceInsideBlockBraces", "LeadingCommentSpace"], - "lint": true, "rails": true }, "reek": true @@ -148,7 +147,6 @@ Settings available (in your VSCode workspace) for each of the linters: } "rubocop": { - "lint": true, //enable all lint cops. "only": [/* array: Run only the specified cop(s) and/or cops in the specified departments. */], "except": [/* array: Run all cops enabled by configuration except the specified cop(s) and/or departments. */], "forceExclusion": true, //Add --force-exclusion option From 9f40705c412a0022123ff671202ad4239ea25890 Mon Sep 17 00:00:00 2001 From: andrewmcodes Date: Mon, 17 Sep 2018 21:38:10 -0400 Subject: [PATCH 2/2] commit to re-trigger travis build --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 86a0266f3..4e82fd302 100644 --- a/README.md +++ b/README.md @@ -154,6 +154,7 @@ Settings available (in your VSCode workspace) for each of the linters: "rails": true //Run extra rails cops } ``` + ## Formatting The VS Code Ruby extension can automatically format your Ruby files whenever you save.