From d4290e67219a8c34080ff643a0c151d008e32f85 Mon Sep 17 00:00:00 2001 From: Colin Delahunty <72827203+colin99d@users.noreply.github.com> Date: Fri, 23 Dec 2022 02:04:19 +0000 Subject: [PATCH] Update CONTRIBUTING.md (#1344) --- CONTRIBUTING.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 1e3d76a7aa..ff359c3a10 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -48,8 +48,8 @@ prior to merging. There are four phases to adding a new lint rule: 1. Define the rule in `src/checks.rs`. -2. Define the _logic_ for triggering the rule in `src/check_ast.rs` (for AST-based checks), - `src/check_tokens.rs` (for token-based checks), or `src/check_lines.rs` (for text-based checks). +2. Define the _logic_ for triggering the rule in `src/checkers/ast.rs` (for AST-based checks), + `src/checkers/tokens.rs` (for token-based checks), or `src/checkers/lines.rs` (for text-based checks). 3. Add a test fixture. 4. Update the generated files (documentation and generated code).