Skip to content

Commit

Permalink
Chore: test foo( ) with space-in-parens option "always" (#13986)
Browse files Browse the repository at this point in the history
  • Loading branch information
brodybits committed Jan 6, 2021
1 parent f6948f6 commit 78cb483
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions tests/lib/rules/space-in-parens.js
Expand Up @@ -22,6 +22,7 @@ ruleTester.run("space-in-parens", rule, {
valid: [
{ code: "foo()", options: ["never"] },
{ code: "foo()", options: ["always"] },
{ code: "foo( )", options: ["always"] },
{ code: "foo( bar )", options: ["always"] },
{ code: "foo\n(\nbar\n)\n", options: ["always"] },
{ code: "foo\n( \nbar\n )\n", options: ["always"] },
Expand Down

0 comments on commit 78cb483

Please sign in to comment.