Add func-call-spacing rule

This commit is contained in:
Rachel Fenichel
2019-07-31 09:43:21 -07:00
parent b4109d7c43
commit afd2b09453
10 changed files with 12 additions and 10 deletions

View File

@@ -54,8 +54,10 @@
"_comment": "Blockly uses single quotes except for JSON blobs, which must use double quotes.",
"quotes": ["off"],
"semi": ["error", "always"],
"_comment": "Blockly doesn't have space before function paren",
"_comment": "Blockly doesn't have space before function paren when defining functions",
"space-before-function-paren": ["error", "never"],
"_comment": "Blocklydoesn't have space before function paren when calling functions",
"func-call-spacing": ["error", "never"],
"space-infix-ops": ["error"],
"_comment": "Blockly uses 'use strict' in files",
"strict": ["off"],