When I search for turning off semicolon, I get 'semi': 0 or similar I tried to putting it, but still my linter puts semicolon on lines. Below is my .eslintrc and I am perplexed whi
Solution 1:
Try to add this rule:
"semi": [
"error",
"never"
]
If still not fixed, the problem may be that prettier(if you installed) or editor is controlling it.
Go at vscode settings and add
"eslint.autoFixOnSave":true,
Share
Post a Comment
for "Eslint Turn Off Semicolon Rule"
Post a Comment for "Eslint Turn Off Semicolon Rule"