Skip to content
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

Legacy Config Test PR for main (9c12109c4943f26f0676b71c9c10e456748872cf) #1777

Conversation

CatChen
Copy link
Owner

@CatChen CatChen commented Oct 18, 2024

Generated from main (9c12109).

Run ID: 11397086389. Number: 2365. Attempt: 1.

Copy link
Contributor

@github-actions github-actions bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

ESLint doesn't pass. Please fix all ESLint issues.

/* eslint-disable */
/* eslint-enable require-unicode-regexp */
/*eslint require-unicode-regexp: "error"*/
const a = /aaa/
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Use the 'u' flag. require-unicode-regexp

Suggestion(s) available:

Suggested change
const a = /aaa/
const a = /aaa/u

/* eslint-enable require-unicode-regexp */
/*eslint require-unicode-regexp: "error"*/
const a = /aaa/
const b = /bbb/gi
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Use the 'u' flag. require-unicode-regexp

Suggestion(s) available:

Suggested change
const b = /bbb/gi
const b = /bbb/giu

/*eslint require-unicode-regexp: "error"*/
const a = /aaa/
const b = /bbb/gi
const c = new RegExp("ccc")
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Use the 'u' flag. require-unicode-regexp

Suggestion(s) available:

Suggested change
const c = new RegExp("ccc")
const c = new RegExp("ccc", "u")

const a = /aaa/
const b = /bbb/gi
const c = new RegExp("ccc")
const d = new RegExp("ddd", "gi")
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Use the 'u' flag. require-unicode-regexp

Suggestion(s) available:

Suggested change
const d = new RegExp("ddd", "gi")
const d = new RegExp("ddd", "giu")

Copy link
Contributor

Finished testing 9c12109 by 2365-1. Closing PR.

@github-actions github-actions bot closed this Oct 18, 2024
@github-actions github-actions bot deleted the workflows/tests/legacy/id-11397086389/run-2365/attempt-1/sha-9c12109c4943f26f0676b71c9c10e456748872cf branch October 18, 2024 03:47
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant