Merge pull request #468 from mil7/patch-1

fix disabling-linters documentation
This commit is contained in:
Lukas Gravley 2020-07-23 10:20:32 -05:00 committed by GitHub
commit 565883ac1b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -40,6 +40,7 @@ For some linters it is also possible to override rules on a case by case level w
- [Kotlin](#kotlin) - [Kotlin](#kotlin)
- [OpenAPI](#openapi) - [OpenAPI](#openapi)
- [Protocol Buffers](#protocol-buffers) - [Protocol Buffers](#protocol-buffers)
- [Clojure](#clojure)
- [EDITORCONFIG-CHECKER](#editorconfig-checker) - [EDITORCONFIG-CHECKER](#editorconfig-checker)
- [HTML](#html) - [HTML](#html)
@ -947,14 +948,13 @@ lint:
### clj-kondo disable entire file ### clj-kondo disable entire file
````clojure ```clojure
{:output {:exclude-files ["path/to/file"]}} {:output {:exclude-files ["path/to/file"]}}
```
## EDITORCONFIG-CHECKER ## EDITORCONFIG-CHECKER
- [editorconfig-checker](https://github.com/editorconfig-checker/editorconfig-checker) - [editorconfig-checker](https://github.com/editorconfig-checker/editorconfig-checker)
--------------------------------------------------------------------------------
### editorconfig-checker Config file ### editorconfig-checker Config file
- `.github/linters/.ecrc` - `.github/linters/.ecrc`
- This linter will also use the [`.editorconfig`](https://editorconfig.org/) of your project - This linter will also use the [`.editorconfig`](https://editorconfig.org/) of your project
@ -1004,4 +1004,3 @@ lint:
### htmlhint disable entire file ### htmlhint disable entire file
- There is currently **No** way to disable rules in an entire file - There is currently **No** way to disable rules in an entire file
````