You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
'{FEATURE}' is only available in {VERSION} (use 'esversion: {VERSION}')
where: {FEATURE} is a string representing any javascript feature (like 'object spread property'), and {VERSION} is a string representing any ES version code (like ES9)
Problem
As intended, the linter will warn about possible unsupported javascript features as shown above. However, the warning may still show even after trying these solutions:
1: Putting /* jshint esversion: 9 */ above the file,
2: `Set JSHint version' in commands panel.
I know I can just ignore it and not attempt to fix the warning. However, there is a bug where lines after the warning are not linted properly.
Also, the first solution produces another warning:
Incompatible values for 'esversion' and 'esnext' linting options
Regardless of putting values as a string (like '9') or a number (like 9), it won't work.
The second option does nothing.
I hope this gets fixed (even though it might be a small problem).
Some helpful details
Acode Editor v1.7.1 (266)
Lint Plugin v.1.0.2
The text was updated successfully, but these errors were encountered:
where:
{FEATURE}
is a string representing any javascript feature (like 'object spread property'), and{VERSION}
is a string representing any ES version code (like ES9)Problem
As intended, the linter will warn about possible unsupported javascript features as shown above. However, the warning may still show even after trying these solutions:
/* jshint esversion: 9 */
above the file,I know I can just ignore it and not attempt to fix the warning. However, there is a bug where lines after the warning are not linted properly.
Also, the first solution produces another warning:
Regardless of putting values as a string (like '9') or a number (like 9), it won't work.
The second option does nothing.
I hope this gets fixed (even though it might be a small problem).
Some helpful details
Acode Editor v1.7.1 (266)
Lint Plugin v.1.0.2
The text was updated successfully, but these errors were encountered: