10 lines
234 B
YAML
10 lines
234 B
YAML
---
|
|
RegexLinter:
|
|
description: >-
|
|
Make sure the string foobar never appears in a js variable
|
|
file because it is bad.
|
|
rule: no-foobar
|
|
include: ['.']
|
|
extensions: ['js']
|
|
type: regex
|
|
payload: foobar
|