diff options
author | Eugene Sokolov <eug-vs@keemail.me> | 2020-06-07 16:51:42 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-07 16:51:42 +0300 |
commit | 4e4c9d529e6f70e7dac84aaecb5b6a25769c3290 (patch) | |
tree | 7cf4ded95eec70201217552aa6dca7b35a2aa16d /.eslintrc.json | |
parent | ce8764580983e0008300bcc88d463da44d94c455 (diff) | |
parent | d549053615ce308b906ca406f8d6623c0730d636 (diff) | |
download | which-ui-4e4c9d529e6f70e7dac84aaecb5b6a25769c3290.tar.gz |
Merge pull request #11 from ilyayudovin/poll-functionality
Add functionality to Poll component
Diffstat (limited to '.eslintrc.json')
-rw-r--r-- | .eslintrc.json | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/.eslintrc.json b/.eslintrc.json index 0789840..4899960 100644 --- a/.eslintrc.json +++ b/.eslintrc.json @@ -15,6 +15,7 @@ "max-len": ["error", { "code": 120 }], "arrow-parens": [2, "as-needed"], "comma-dangle": ["error", "never"], + "import/extensions": ["error", { "ts": "never", "tsx": "never" }], "arrow-body-style": 0, "no-cond-assign": 0, "linebreak-style": 0, @@ -22,4 +23,4 @@ "react/no-children-prop": 0, "react/no-danger": 0 } -}
\ No newline at end of file +} |