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
{{ message }}
This repository has been archived by the owner on Aug 7, 2023. It is now read-only.
If the option Fix on save is enabled there is a wrong behaviour.
If the rule requireSpacesInsideParentheses is enabled and a file is beeing saved
the linter reverses the rule on every save action.
For example: (with spaces)
$( '#history' ).val( maxValue );
After first save:
$('#history').val(maxValue);
The spaces are gone
After another save:
$( '#history' ).val( maxValue );
The spaces are there...
If there are lines with spaces and without spaces in a single file the spaces will
be removed respectively will be added on each save
The text was updated successfully, but these errors were encountered:
Version
3.4.8
Issue
If the option
Fix on save
is enabled there is a wrong behaviour.If the rule
requireSpacesInsideParentheses
is enabled and a file is beeing savedthe linter reverses the rule on every save action.
For example: (with spaces)
After first save:
The spaces are gone
After another save:
The spaces are there...
If there are lines with spaces and without spaces in a single file the spaces will
be removed respectively will be added on each save
The text was updated successfully, but these errors were encountered: