From 8c027addeb149dd96787996412fad241739500e3 Mon Sep 17 00:00:00 2001 From: Lucas Gravley <29484535+admiralAwkbar@users.noreply.github.com> Date: Thu, 23 Apr 2020 10:40:18 -0500 Subject: [PATCH] adding standard --- docs/disabling-linters.md | 20 ++++++++++++++------ 1 file changed, 14 insertions(+), 6 deletions(-) diff --git a/docs/disabling-linters.md b/docs/disabling-linters.md index 7dd55f1d..0155db84 100644 --- a/docs/disabling-linters.md +++ b/docs/disabling-linters.md @@ -388,13 +388,16 @@ alert('foo') - [standard js](https://standardjs.com/) ### Javascript standard Config file -- `.github/linters/.eslintrc.yml` -- You can pass multiple rules and overwrite default rules -- File should be located at: `.github/linters/.eslintrc.yml` +- There is no top level *configuration file* available at this time ### Javascript standard disable single line +- There is currently **No** way to disable rules inline of the file(s) + ### Javascript standard disable code block +- There is currently **No** way to disable rules inline of the file(s) + ### 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) +- [standardjs](https://standardjs.com/) + ### Typescript standard Config file -- `.github/linters/.eslintrc.yml` -- You can pass multiple rules and overwrite default rules -- File should be located at: `.github/linters/.eslintrc.yml` +- There is no top level *configuration file* available at this time ### Typescript standard disable single line +- There is currently **No** way to disable rules inline of the file(s) + ### Typescript standard disable code block +- There is currently **No** way to disable rules inline of the file(s) + ### Typescript standard disable entire file +- There is currently **No** way to disable rules inline of the file(s) --------------------------------------------------------------------------------