diff options
author | Shin'ya Ueoka <ueokande@i-beam.org> | 2019-05-22 20:35:40 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-05-22 20:35:40 +0900 |
commit | 07897df636ca3e732490d53fd2acf947738bf16e (patch) | |
tree | 75af476b86222cbb8a8546ace1f0ff606c24eeb3 /.eslintrc | |
parent | c1f64927b63d18048790abd3ba907083dbca3084 (diff) | |
parent | fc1cd234d5643fde0abbd529a374e330cb4ab4b6 (diff) |
Merge pull request #590 from ueokande/remove-unnecessary-semi
Remove unnecessary semi
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"] } } |