diff options
author | Michael C <[email protected]> | 2022-10-07 20:51:58 -0400 |
---|---|---|
committer | Michael C <[email protected]> | 2022-10-07 20:51:58 -0400 |
commit | a09885803510cb73bdd42b8bba94d04950f84658 (patch) | |
tree | c8884d86218bb5726692d5be89fa825ec3928539 /.eslintrc.json | |
parent | 81e85c19ae88c78d90610e94df6ce3a771234711 (diff) | |
download | SponsorBlock-a09885803510cb73bdd42b8bba94d04950f84658.tar.gz SponsorBlock-a09885803510cb73bdd42b8bba94d04950f84658.zip |
force delimiters to follow semi
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 9744cc74..4310d618 100644 --- a/.eslintrc.json +++ b/.eslintrc.json @@ -23,7 +23,8 @@ "@typescript-eslint/no-unused-vars": "error", "no-self-assign": "off", "@typescript-eslint/no-empty-interface": "off", - "react/prop-types": [2, { "ignore": ["children"] }] + "react/prop-types": [2, { "ignore": ["children"] }], + "@typescript-eslint/member-delimiter-style": "warn" }, "settings": { "react": { |