Skip to content

Commit d91add6

Browse files
committed
Biome format config files too.
1 parent 36df344 commit d91add6

File tree

4 files changed

+25
-25
lines changed

4 files changed

+25
-25
lines changed

browser-extension/biome.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
},
1111
"files": {
1212
"ignoreUnknown": false,
13-
"includes": [".*", "src/**", "tests/**", "!src/overtype", "!src/playgrounds"]
13+
"includes": [".*", "*.config.ts", "src/**", "tests/**", "!src/overtype"]
1414
},
1515
"formatter": {
1616
"enabled": true,
Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
// playwright.config.ts
2-
import { defineConfig } from "@playwright/test";
2+
import { defineConfig } from '@playwright/test'
33

44
export default defineConfig({
5-
testDir: "tests/e2e",
5+
reporter: [['html', { open: 'never' }]],
6+
testDir: 'tests/e2e',
67
use: {
7-
screenshot: "only-on-failure",
8-
video: "retain-on-failure",
9-
trace: "retain-on-failure",
8+
screenshot: 'only-on-failure',
9+
trace: 'retain-on-failure',
10+
video: 'retain-on-failure',
1011
},
11-
reporter: [["html", { open: "never" }]],
12-
});
12+
})

browser-extension/vitest.config.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
import { defineConfig } from "vitest/config";
2-
import { WxtVitest } from "wxt/testing";
1+
import { defineConfig } from 'vitest/config'
2+
import { WxtVitest } from 'wxt/testing'
33

44
export default defineConfig({
55
plugins: [WxtVitest()],
66
test: {
7-
environment: "node",
8-
pool: "threads",
7+
environment: 'node',
98
globals: true,
9+
pool: 'threads',
1010
},
11-
});
11+
})

browser-extension/wxt.config.ts

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,22 @@
1-
import { defineConfig } from "wxt";
1+
import { defineConfig } from 'wxt'
22

33
export default defineConfig({
44
manifest: {
55
description:
6-
"Syntax highlighting and autosave for comments on GitHub (and other other markdown-friendly websites).",
7-
host_permissions: ["https://*/*", "http://*/*"],
6+
'Syntax highlighting and autosave for comments on GitHub (and other other markdown-friendly websites).',
7+
host_permissions: ['https://*/*', 'http://*/*'],
88
icons: {
9-
16: "/icons/icon-16.png",
10-
48: "/icons/icon-48.png",
11-
128: "/icons/icon-128.png",
9+
16: '/icons/icon-16.png',
10+
48: '/icons/icon-48.png',
11+
128: '/icons/icon-128.png',
1212
},
13-
name: "Gitcasso",
14-
permissions: ["activeTab", "tabs"],
15-
version: "1.0.0",
13+
name: 'Gitcasso',
14+
permissions: ['activeTab', 'tabs'],
15+
version: '1.0.0',
1616
},
17-
modules: ["@wxt-dev/webextension-polyfill"],
18-
srcDir: "src",
17+
modules: ['@wxt-dev/webextension-polyfill'],
18+
srcDir: 'src',
1919
webExt: {
2020
disabled: true,
2121
},
22-
});
22+
})

0 commit comments

Comments
 (0)