I am trying to disable eslint rule in a typescript file. I have a regular expression which contains more than 500 characters. So it's generated an eslint warning. Since this is a regular expression, better way is to add an eslint ment before declaring the regular expression only for that line. So my attempt is as below.
/* eslint-disable-next-line max-len */
export const URI_REGEX = "" // something which is very long
But still this is not working. I could see the eslint warning as This line has a length of 509. Maximum allowed is 270
. So how can I remove this warning?
I am trying to disable eslint rule in a typescript file. I have a regular expression which contains more than 500 characters. So it's generated an eslint warning. Since this is a regular expression, better way is to add an eslint ment before declaring the regular expression only for that line. So my attempt is as below.
/* eslint-disable-next-line max-len */
export const URI_REGEX = "" // something which is very long
But still this is not working. I could see the eslint warning as This line has a length of 509. Maximum allowed is 270
. So how can I remove this warning?
-
1
I think to disable the next-line you cannot use block quotes
/**/
. Use// eslint-disable-next-line max-len
– evolutionxbox Commented Mar 10, 2022 at 9:07 - other way also tried out. not works. But inline ments working – Jack Commented Mar 10, 2022 at 9:08
- What do you mean by "inline ments"? – evolutionxbox Commented Mar 10, 2022 at 9:09
- 3 You also may want to also rethink why you need a regex that is 500 characters long. That sounds like a nightmare to maintain. – Andy Commented Mar 10, 2022 at 9:10
2 Answers
Reset to default 6Not sure, your method should be working but can you give this a try by wrapping it?
/* eslint-disable max-len */
export const URI_REGEX = "" // something which is very long
/* eslint-enable max-len */
Which version of eslint do you have?
I think you can can try //eslint-disable-line
for disable all rules for the specific line, or using // eslint-disable max-len
Taking from here: https://github./prettier/prettier/issues/3375
Edit
I think you can also add a ignoreRule for you speisifc regex. See here the docs: https://eslint/docs/rules/max-len of ignorePattern