diff options
author | Shin'ya Ueoka <ueokande@i-beam.org> | 2019-12-22 10:27:31 +0900 |
---|---|---|
committer | Shin'ya Ueoka <ueokande@i-beam.org> | 2019-12-22 10:48:39 +0900 |
commit | e21f9f8733b0894a348831fff02e2d8ab71d3c35 (patch) | |
tree | 2d1dd813f746efd94e50d0565fa04b817c14e216 /.eslintrc | |
parent | 2e7006ce24c42ec2b6642346d153429338e7334e (diff) |
Fix lint rules
Diffstat (limited to '.eslintrc')
-rw-r--r-- | .eslintrc | 8 |
1 files changed, 8 insertions, 0 deletions
@@ -25,5 +25,13 @@ "ecmaFeatures": { "jsx": true } + }, + "rules": { + "@typescript-eslint/explicit-function-return-type": "off", + "@typescript-eslint/no-explicit-any": "off", + "@typescript-eslint/no-namespace": "off", + "@typescript-eslint/no-non-null-assertion": "off", + "@typescript-eslint/no-unused-vars": ["error", { "argsIgnorePattern": "^_" }], + "@typescript-eslint/no-use-before-define": "off" } } |