diff options
author | Shin'ya Ueoka <ueokande@i-beam.org> | 2020-09-21 14:20:38 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-09-21 14:20:38 +0900 |
commit | 7b8a96bbf7cb6d28c76c061a6b24a9fa821820b1 (patch) | |
tree | 4d00b60aa59e946f64ea6402ee7c78fc491f6203 /.eslintrc | |
parent | 748ab17dc61a2bb3f1c1e3ea4b43d13ef23d8edf (diff) | |
parent | 9bba3ed79123affc8e557cf4211df51bd375742c (diff) |
Merge pull request #837 from ueokande/use-styled-components
Use styled-components instead of vanilla CSS/SCSS in console
Diffstat (limited to '.eslintrc')
-rw-r--r-- | .eslintrc | 10 |
1 files changed, 9 insertions, 1 deletions
@@ -36,5 +36,13 @@ "@typescript-eslint/no-explicit-any": "off", "@typescript-eslint/no-non-null-assertion": "off", "@typescript-eslint/no-unused-vars": ["error", { "argsIgnorePattern": "^_" }] - } + }, + "overrides": [ + { + "files": ["**/*.tsx"], + "rules": { + "react/prop-types": "off" + } + } + ] } |