diff options
| author | flawedworld <38294951+flawedworld@users.noreply.github.com> | 2021-04-01 23:46:50 +0100 |
|---|---|---|
| committer | Daniel Micay <danielmicay@gmail.com> | 2021-04-01 19:04:29 -0400 |
| commit | 603b777ecd991643314593e3e217f5ead811b8cb (patch) | |
| tree | 2e152e9db929eb935c30f392fb972213aeaaf182 | |
| parent | 6a5e5ac18074545df75bc733f7ad47ffb9b8bc7d (diff) | |
Fail eslint on var usage.
| -rw-r--r-- | .eslintrc.json | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/.eslintrc.json b/.eslintrc.json index 743bf6c6..97ac8e54 100644 --- a/.eslintrc.json +++ b/.eslintrc.json @@ -24,6 +24,9 @@ "semi": [ "error", "always" + ], + "no-var": [ + "error" ] } } |
