diff options
author | Shin'ya Ueoka <ueokande@i-beam.org> | 2020-08-11 21:42:24 +0900 |
---|---|---|
committer | Shin'ya Ueoka <ueokande@i-beam.org> | 2020-08-11 21:42:24 +0900 |
commit | 936c79ce4f7f733d12894e1831208a7d872f4615 (patch) | |
tree | 2a52f8ad428572a07234ec429467527021de6c11 /.eslintrc | |
parent | 0b98a22eba4f7bbac215abd800293ac2be67b24d (diff) |
Enable @typescript-eslint/no-use-before-define
Diffstat (limited to '.eslintrc')
-rw-r--r-- | .eslintrc | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -29,7 +29,6 @@ "@typescript-eslint/no-empty-function": "off", "@typescript-eslint/no-explicit-any": "off", "@typescript-eslint/no-non-null-assertion": "off", - "@typescript-eslint/no-unused-vars": ["error", { "argsIgnorePattern": "^_" }], - "@typescript-eslint/no-use-before-define": "off" + "@typescript-eslint/no-unused-vars": ["error", { "argsIgnorePattern": "^_" }] } } |