Skip to content

Commit 614fb64

Browse files
committedApr 28, 2020
Fix linting
1 parent 3a7f728 commit 614fb64

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed
 

‎test/custom-resolve.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@ import path from "path"
55
import test from "ava"
66
import postcss from "postcss"
77

8-
// internal tooling
9-
import checkFixture from "./helpers/check-fixture"
10-
118
// plugin
129
import atImport from ".."
1310

11+
// internal tooling
12+
import checkFixture from "./helpers/check-fixture"
13+
1414
test.serial("should accept file", checkFixture, "custom-resolve-file", {
1515
resolve: () => path.resolve("test/fixtures/imports/custom-resolve-1.css"),
1616
})

‎test/import.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,12 @@ import path from "path"
66
import test from "ava"
77
import postcss from "postcss"
88

9-
// internal tooling
10-
import checkFixture from "./helpers/check-fixture"
11-
129
// plugin
1310
import atImport from ".."
1411

12+
// internal tooling
13+
import checkFixture from "./helpers/check-fixture"
14+
1515
test("should import stylsheets", checkFixture, "simple")
1616

1717
test("should not import a stylsheet twice", checkFixture, "no-duplicate")

‎test/plugins.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,12 @@
22
import test from "ava"
33
import postcss from "postcss"
44

5-
// internal tooling
6-
import checkFixture from "./helpers/check-fixture"
7-
85
// plugin
96
import atImport from ".."
107

8+
// internal tooling
9+
import checkFixture from "./helpers/check-fixture"
10+
1111
test("should apply plugins to root", t => {
1212
const atRules = []
1313
const rules = []

0 commit comments

Comments
 (0)
Please sign in to comment.