Skip to content

Commit

Permalink
fix: Use a list instead of commas
Browse files Browse the repository at this point in the history
  • Loading branch information
kkrypt0nn committed Sep 21, 2023
1 parent 80e5753 commit e361399
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions src/theme/tokens/diff.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,12 @@ const tokens = (context: ThemeContext): TextmateColors => {
},
{
name: "Diff",
scope:
"meta.diff.header.from-file,meta.diff.header.to-file,punctuation.definition.from-file.diff,punctuation.definition.to-file.diff",
scope: [
"meta.diff.header.from-file",
"meta.diff.header.to-file",
"punctuation.definition.from-file.diff",
"punctuation.definition.to-file.diff"

Check failure on line 21 in src/theme/tokens/diff.ts

View workflow job for this annotation

GitHub Actions / lint-and-build

Insert `,`
],
settings: {
foreground: palette.blue,
fontStyle: "",
Expand Down

0 comments on commit e361399

Please sign in to comment.