diff options
author | Shin'ya Ueoka <ueokande@i-beam.org> | 2019-05-22 20:30:20 +0900 |
---|---|---|
committer | Shin'ya Ueoka <ueokande@i-beam.org> | 2019-05-22 20:30:20 +0900 |
commit | fc1cd234d5643fde0abbd529a374e330cb4ab4b6 (patch) | |
tree | 75af476b86222cbb8a8546ace1f0ff606c24eeb3 /.eslintrc | |
parent | 39d65b136aeb57022454e5b8d0a4a4a552f35243 (diff) |
Use @typescript-eslint/semi rule
Diffstat (limited to '.eslintrc')
-rw-r--r-- | .eslintrc | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -72,6 +72,7 @@ "quotes": ["error", "single", { "allowTemplateLiterals": true }], "require-jsdoc": "off", "require-unicode-regexp": "off", + "semi": "off", "sort-imports": "off", "sort-keys": "off", "sort-vars": "off", @@ -80,6 +81,8 @@ "react/jsx-indent": ["error", 2], "react/prop-types": "off", "react/react-in-jsx-scope": "off", + "@typescript-eslint/no-unused-vars": ["error", { args: "none" }], + "@typescript-eslint/semi": ["error"] } } |