Skip to content

Commit

Permalink
fix: disable some rules
Browse files Browse the repository at this point in the history
  • Loading branch information
jpoehnelt committed May 13, 2021
1 parent 40d66ee commit df52a28
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/rules.ts
Original file line number Diff line number Diff line change
Expand Up @@ -66,17 +66,17 @@ export const DEFAULT_RULES: { [key: string]: Rule } = {
},
grandfathered: {
regex: [/grandfathered/gi],
level: Level.WARNING,
level: Level.OFF,
alternatives: ["legacied", "exempted"],
},
sanity_check: {
regex: [/sanity[_-]*check/gi],
level: Level.WARNING,
level: Level.OFF,
alternatives: ["smoke test", "confidence check"],
},
man_hours: {
regex: [/man[_-]*hours/gi],
level: Level.WARNING,
level: Level.OFF,
alternatives: ["person-hours", "human-hours"],
},
};

0 comments on commit df52a28

Please sign in to comment.