adding standard

This commit is contained in:
Lucas Gravley 2020-04-23 10:40:18 -05:00
parent 7ad372cf8c
commit 8c027addeb

View file

@ -388,13 +388,16 @@ alert('foo')
- [standard js](https://standardjs.com/) - [standard js](https://standardjs.com/)
### Javascript standard Config file ### Javascript standard Config file
- `.github/linters/.eslintrc.yml` - There is no top level *configuration file* available at this time
- You can pass multiple rules and overwrite default rules
- File should be located at: `.github/linters/.eslintrc.yml`
### Javascript standard disable single line ### Javascript standard disable single line
- There is currently **No** way to disable rules inline of the file(s)
### Javascript standard disable code block ### Javascript standard disable code block
- There is currently **No** way to disable rules inline of the file(s)
### Javascript standard disable entire file ### Javascript standard disable entire file
- There is currently **No** way to disable rules inline of the file(s)
-------------------------------------------------------------------------------- --------------------------------------------------------------------------------
@ -435,14 +438,19 @@ alert('foo')
-------------------------------------------------------------------------------- --------------------------------------------------------------------------------
## Typescript (standard) ## Typescript (standard)
- [standardjs](https://standardjs.com/)
### Typescript standard Config file ### Typescript standard Config file
- `.github/linters/.eslintrc.yml` - There is no top level *configuration file* available at this time
- You can pass multiple rules and overwrite default rules
- File should be located at: `.github/linters/.eslintrc.yml`
### Typescript standard disable single line ### Typescript standard disable single line
- There is currently **No** way to disable rules inline of the file(s)
### Typescript standard disable code block ### Typescript standard disable code block
- There is currently **No** way to disable rules inline of the file(s)
### Typescript standard disable entire file ### Typescript standard disable entire file
- There is currently **No** way to disable rules inline of the file(s)
-------------------------------------------------------------------------------- --------------------------------------------------------------------------------