-
-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
- Loading branch information
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,4 @@ | ||
# Folders to ignore | ||
.vscode/ | ||
.vscode/ | ||
.idea/ | ||
node_modules/ |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
html {} | ||
|
||
div { color: white;} | ||
|
||
div { color: white; background-color: red;} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
const a = [2,2,1,3]; | ||
Check failure on line 1 in testdata/error/format.js
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
@font-face foo {} | ||
@font-face foo; | ||
@font-face ; |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
[a a, ++b, ] = test; | ||
Check failure on line 1 in testdata/error/lint.js
|
||
[a, c, ...rest,] = test; | ||
Check failure on line 2 in testdata/error/lint.js
|
||
[a = , = "test"] = test; | ||
Check failure on line 3 in testdata/error/lint.js
|
||
[[a b] [c]]= test; | ||
Check failure on line 4 in testdata/error/lint.js
|
||
[a: b] = c | ||
Check failure on line 5 in testdata/error/lint.js
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
html { | ||
} | ||
|
||
div { | ||
color: white; | ||
} | ||
|
||
div { | ||
color: white; | ||
background-color: red; | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
const a = [2, 2, 1, 3]; |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
@font-face {} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
[foo, bar] = baz; |