diff --git a/README.md b/README.md index 0dd78ab82..4e82fd302 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 @@ -156,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.