chore: enable formatting over the entire codebase in CI (#6655)

Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com>
This commit is contained in:
Frank Elsinga
2026-01-09 02:10:36 +01:00
committed by GitHub
parent 6658f2ce41
commit 0f61d7ee1b
422 changed files with 30899 additions and 27379 deletions

View File

@@ -22,10 +22,11 @@ export default defineConfig({
// Reporter to use
reporter: [
[
"html", {
"html",
{
outputFolder: "../private/playwright-report",
open: "never",
}
},
],
],
@@ -47,7 +48,7 @@ export default defineConfig({
{
name: "specs",
use: { ...devices["Desktop Chrome"] },
dependencies: [ "run-once setup" ],
dependencies: ["run-once setup"],
},
/*
{

View File

@@ -15,13 +15,13 @@ export default defineConfig({
port: 3000,
},
define: {
"FRONTEND_VERSION": JSON.stringify(process.env.npm_package_version),
FRONTEND_VERSION: JSON.stringify(process.env.npm_package_version),
"process.env": {},
},
plugins: [
vue(),
visualizer({
filename: "tmp/dist-stats.html"
filename: "tmp/dist-stats.html",
}),
viteCompression({
algorithm: "gzip",
@@ -40,21 +40,19 @@ export default defineConfig({
],
css: {
postcss: {
"parser": postCssScss,
"map": false,
"plugins": [ postcssRTLCSS ]
}
parser: postCssScss,
map: false,
plugins: [postcssRTLCSS],
},
},
build: {
commonjsOptions: {
include: [ /.js$/ ],
include: [/.js$/],
},
rollupOptions: {
output: {
manualChunks(id, { getModuleInfo, getModuleIds }) {
}
}
manualChunks(id, { getModuleInfo, getModuleIds }) {},
},
},
}
},
});