aboutsummaryrefslogtreecommitdiff
path: root/src/rules
diff options
context:
space:
mode:
Diffstat (limited to 'src/rules')
-rw-r--r--src/rules/typescript/default.json11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/rules/typescript/default.json b/src/rules/typescript/default.json
index 98c55db..c98552b 100644
--- a/src/rules/typescript/default.json
+++ b/src/rules/typescript/default.json
@@ -138,6 +138,14 @@
"omitLastInOneLineBlock": false
}
],
+ "@typescript-eslint/space-before-function-paren": [
+ "error",
+ {
+ "anonymous": "always",
+ "asyncArrow": "always",
+ "named": "never"
+ }
+ ],
"@typescript-eslint/strict-boolean-expressions": [
"error",
{
@@ -199,5 +207,8 @@
],
"semi": [
"off"
+ ],
+ "space-before-function-paren": [
+ "off"
]
}