Skip to content Skip to sidebar Skip to footer

Eslint Turn Off Semicolon Rule

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,

Post a Comment for "Eslint Turn Off Semicolon Rule"