diff options
author | Shin'ya Ueoka <ueokande@i-beam.org> | 2019-05-22 20:16:21 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-05-22 20:16:21 +0900 |
commit | c1f64927b63d18048790abd3ba907083dbca3084 (patch) | |
tree | 3a64b677763f62094c49527d8182f8756a52fbd1 /.eslintrc | |
parent | ced89134e32d793d8e091113cfb20867e1c3b572 (diff) | |
parent | 7be8bc71784b8dedd0fee03dd72dd8936e2f3929 (diff) |
Merge pull request #588 from ueokande/tsyringe
Use tsyringe for DI container
Diffstat (limited to '.eslintrc')
-rw-r--r-- | .eslintrc | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -36,7 +36,7 @@ "jsx-quotes": ["error", "prefer-single"], "max-classes-per-file": "off", "max-lines": "off", - "max-params": ["error", 5], + "max-params": ["error", 10], "max-statements": ["error", 15], "multiline-comment-style": "off", "multiline-ternary": "off", @@ -57,6 +57,7 @@ "no-undef-init": "off", "no-unused-vars": "off", "no-use-before-define": "off", + "no-useless-constructor": "off", "no-warning-comments": "off", "object-curly-newline": ["error", { "consistent": true }], "object-curly-spacing": ["error", "always", { "arraysInObjects": false, "objectsInObjects": false }], |