We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0073958 commit 94a89b7Copy full SHA for 94a89b7
What-Not-To-Do/ExcessivelySpacingFuncCalls.pq.md
@@ -0,0 +1,31 @@
1
+Whitespace between function calls and the name are allowed. Including newlines.
2
+These are identical statements:
3
+
4
+```ts
5
+= DoStuff( args )
6
+= DoStuff
7
8
+ ( args )
9
+```
10
+Record lookups also allow whitespace
11
12
+This is totally valid: ( Syntactically valid, not morally )
13
14
15
+let
16
+ Func = () => [
17
+ user = [ Name = "bob" ]
18
+ ]
19
+in
20
+ Func
21
22
23
+(
24
25
+ )[
26
+ user
27
28
29
30
+]
31
0 commit comments