diff options
| author | Guillaume Gomez <guillaume.gomez@huawei.com> | 2022-05-22 22:29:44 +0200 |
|---|---|---|
| committer | Guillaume Gomez <guillaume.gomez@huawei.com> | 2022-05-22 22:29:44 +0200 |
| commit | 399299fba27f7fdeca4b0a4a2802dcfb92f25175 (patch) | |
| tree | c10326d826d0d72cca60599a64a540cc230ed37f | |
| parent | 0a437b2ca081bc12425a3318cb66aade9824cbae (diff) | |
| download | rust-399299fba27f7fdeca4b0a4a2802dcfb92f25175.tar.gz rust-399299fba27f7fdeca4b0a4a2802dcfb92f25175.zip | |
Add new eslint rule to prevent whitespace before function call paren
| -rw-r--r-- | src/librustdoc/html/static/.eslintrc.js | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/librustdoc/html/static/.eslintrc.js b/src/librustdoc/html/static/.eslintrc.js index cb163d540e0..bf962303b3a 100644 --- a/src/librustdoc/html/static/.eslintrc.js +++ b/src/librustdoc/html/static/.eslintrc.js @@ -46,5 +46,6 @@ module.exports = { "error", { "beforeColon": false, "afterColon": true, "mode": "strict" } ], + "func-call-spacing": ["error", "never"], } }; |
