Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -124,6 +124,20 @@ This section is a place for additional best practices that may be useful but are
}
```

## How do I disable auto fix

You may wish to disable auto fix so when you run `eslint` in ci it will error
if it catches anything unlinted.

``` js
{
"scripts": {
"eslint:ci": "eslint-godaddy --fix=false --max-warnings=0 lib/ test/",
}
}
```


## How do I contribute?

Fork this repository and submit a pull request.
Expand Down