Merge pull request #2233 from mikemitchell574/patch-1

Replace rules.indent array with number
This commit is contained in:
Ilya Kantor 2020-10-29 19:51:27 +03:00 committed by GitHub
commit 6a3835a7d1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -328,7 +328,7 @@ Here's an example of an `.eslintrc` file:
},
"rules": {
"no-console": 0,
"indent": ["warning", 2]
"indent": 2
}
}
```