mirror of
https://github.com/google/blockly.git
synced 2026-01-08 01:20:12 +01:00
Add func-call-spacing rule
This commit is contained in:
@@ -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"],
|
||||
|
||||
Reference in New Issue
Block a user