forked from max-mapper/standard-format
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest.js
166 lines (116 loc) · 2.16 KB
/
test.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
#!/usr/bin/env node
// This file is automatically ran through standard-format
// and checked by standard. Add test cases for the formatter by adding
// to this file
// eol semicolons
var x = 1;
// eol whitespace
x = 2
// standard-format has nothing to say about unused vars
// so this is here to prevent invalid test cases
console.log(x)
//bad comment -- needs a space after slashes
var test = "what";
if(test) {
["a","b","c"].forEach(function (x) {
// test: infix commas
console.log(x*2);
})
}
var obj = {val: 2}
var another = { foo: 'bar' }
// space after function name and arg paren
;[1].forEach(function(){})
// space after argument paren
function f2 (x,y,z){}
function fooz() {}
function foox () {}
function foos () {}
var anon = function() {}
f2( obj)
f2(obj )
f2( obj )
f2( obj, obj )
f2( obj,obj )
fooz()
foox()
foos()
anon(another)
function foo(){}
function bar() {}
function quux() {}
foo()
bar()
quux()
function food (){}
function foot () {}
food()
foot()
// test: no block padding
var lessThanThreeNewlines = function () {
return 2;
}
lessThanThreeNewlines()
// at most one newline after opening brace
function noExtraNewlines() {
return 2;
}
noExtraNewlines()
// at most one newline after opening brace
function noExtraSingle() { return 2 }
noExtraSingle()
// at most one newline after opening brace
function noExtraBraces() {
if (noExtraBraces != null)
{
return 42
}
else
{
return 42
}
switch(noExtraBraces)
{
case null:
return 42
}
try
{
return 42
}
catch (e)
{
}
for (var i in noExtraBraces) {
return i
}
}
noExtraBraces()
// weird bug function
for (var i = 0 ; i < 42; i++ ) {
}
function getRequests (cb) {
foo({
}, function (err, resp, body) {
cb(err, resp, body)
})
}
getRequests()
// jsx
var React = require('react')
var testClass = React.createClass({
render: function () {
return (
<div className='testClass'></div>
)
}
})
module.exports = testClass
// spacing around Property names (key-spacing)
void {
testing :123
}
// Test start of line semicolins
var gloopy = 12
[1,2,3].map(function () {})
console.log(gloopy)