Run new lint rules (#5413)

This commit is contained in:
Brian Ng
2017-03-04 09:46:01 -06:00
committed by Henry Zhu
parent f7e2d88f6c
commit 8a82cc060a
181 changed files with 1459 additions and 1454 deletions

View File

@@ -31,10 +31,10 @@ describe("converters", function () {
it("object", function () {
assert.deepEqual(t.valueToNode({
a: 1,
"b c": 2
"b c": 2,
}), t.objectExpression([
t.objectProperty(t.identifier("a"), t.numericLiteral(1)),
t.objectProperty(t.stringLiteral("b c"), t.numericLiteral(2))
t.objectProperty(t.stringLiteral("b c"), t.numericLiteral(2)),
]));
});
it("throws if cannot convert", function () {