From bdc04cce2fdc80127bfde9d65ece31f9dcf10cd2 Mon Sep 17 00:00:00 2001 From: Ilya Azin Date: Tue, 17 Nov 2020 13:35:25 +0300 Subject: [PATCH] docs: update new-rule --- docs/new-rule.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/new-rule.md b/docs/new-rule.md index cc6725f..64f3835 100644 --- a/docs/new-rule.md +++ b/docs/new-rule.md @@ -16,7 +16,7 @@ This small guide should help you to implement your own rule for `eslint-plugin-a ## Tip - Use the [**astexplorer** site](https://astexplorer.net) with the `espree` parser and `ESLint v4` transform to interactively create the initial rule implementation. It lets you inspect the full AST as you would get from ESLint and you can even see the result of your auto-fixer implementation. - +- Use vscode debugger with breakpoints to access eslint-context and rule's process ## Steps