-
-
Notifications
You must be signed in to change notification settings - Fork 109
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: add config recommended-legacy #132
Conversation
69cf370
to
f729940
Compare
2bee9f1
to
1ad8593
Compare
it also moves rule tests to `./test/rules`, and adds a test for the configs. fixes #131 Signed-off-by: 唯然 <weiran.zsd@outlook.com>
45f2813
to
5dbc55c
Compare
README.md
Outdated
@@ -70,3 +83,4 @@ npm test | |||
| [detect-unsafe-regex](docs/rules/detect-unsafe-regex.md) | Detects potentially unsafe regular expressions, which may take a very long time to run, blocking the event loop. | ✅ | | |||
|
|||
<!-- end auto-generated rules list --> | |||
```` |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is this a mistake?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ops, it was auto-gened, will take a look.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There was an issue with the formatting of the js code block above, which should be fine now.
114f214
to
88741a3
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM.
Just a note: it's easier to review PRs when you don't force-push. You can just add a new commit and push, then GitHub makes it easy to see what changed.
it also moves rule tests to
./test/rules/
, and adds a test for the configs.fixes #131