You've already forked AstralRinth
forked from didirus/AstralRinth
feat: consistently format all HTML, XML, JSON, CSS, JS, TS, SQL, TOML, YAML, and Markdown files as far as possible (#4193)
* feat: consistently format all HTML, XML, JSON, CSS, JS, TS, SQL, TOML, YAML, and Markdown files * chore: deal with VS Code not being able to parse valid editorconfig syntax Sometimes I'm surprised that computers even work. * chore: get rid of IntelliJ IDE config files that should not be there These were already added to the `.gitignore` a long time ago, and now are being ignored by Prettier. * fix: rename `tooling-config` `format` script to `fix` for it to run with Turbo
This commit is contained in:
committed by
GitHub
parent
6f59f4c110
commit
1454e3351e
132
turbo.jsonc
132
turbo.jsonc
@@ -1,66 +1,70 @@
|
||||
{
|
||||
"$schema": "./node_modules/turbo/schema.json",
|
||||
"concurrency": "100%",
|
||||
"tasks": {
|
||||
"build": {
|
||||
"dependsOn": ["^build"],
|
||||
"inputs": ["$TURBO_DEFAULT$", ".env*"],
|
||||
"outputs": [".nuxt/**", "dist/**", ".output/**", "$TURBO_ROOT$/target/**"],
|
||||
"env": [
|
||||
"NODE_ENV",
|
||||
"SITE_URL",
|
||||
"BASE_URL",
|
||||
"FLAG_OVERRIDES",
|
||||
"BROWSER_BASE_URL",
|
||||
"RATE_LIMIT_IGNORE_KEY",
|
||||
"VERCEL_*",
|
||||
"CF_PAGES_*",
|
||||
"HEROKU_APP_NAME",
|
||||
"STRIPE_PUBLISHABLE_KEY",
|
||||
"PYRO_BASE_URL",
|
||||
"PROD_OVERRIDE",
|
||||
"PYRO_MASTER_KEY",
|
||||
"PORT",
|
||||
"SQLX_OFFLINE",
|
||||
"DATABASE_URL",
|
||||
"CARGO_*",
|
||||
"RUST_*",
|
||||
"RUSTFLAGS",
|
||||
"FORCE_COLOR",
|
||||
"NEXTEST_*"
|
||||
]
|
||||
},
|
||||
"lint": {
|
||||
"env": [
|
||||
"DATABASE_URL",
|
||||
"SQLX_OFFLINE",
|
||||
"CARGO_*",
|
||||
"RUST_*",
|
||||
"RUSTFLAGS",
|
||||
"FORCE_COLOR",
|
||||
"NEXTEST_*"
|
||||
]
|
||||
},
|
||||
"dev": {
|
||||
"cache": false,
|
||||
"persistent": true,
|
||||
"inputs": ["$TURBO_DEFAULT$", ".env*"],
|
||||
"env": ["CARGO_*", "RUST_*", "RUSTFLAGS", "FORCE_COLOR", "NEXTEST_*"],
|
||||
"passThroughEnv": ["DISPLAY", "WEBKIT_DISABLE_DMABUF_RENDERER"]
|
||||
},
|
||||
"test": {
|
||||
"env": [
|
||||
"SQLX_OFFLINE",
|
||||
"DATABASE_URL",
|
||||
"CARGO_*",
|
||||
"RUST_*",
|
||||
"RUSTFLAGS",
|
||||
"FORCE_COLOR",
|
||||
"NEXTEST_*"
|
||||
]
|
||||
},
|
||||
"fix": {
|
||||
"cache": false
|
||||
}
|
||||
}
|
||||
"$schema": "./node_modules/turbo/schema.json",
|
||||
"concurrency": "100%",
|
||||
"tasks": {
|
||||
"build": {
|
||||
"dependsOn": ["^build"],
|
||||
"inputs": ["$TURBO_DEFAULT$", ".env*"],
|
||||
"outputs": [".nuxt/**", "dist/**", ".output/**", "$TURBO_ROOT$/target/**"],
|
||||
"env": [
|
||||
"NODE_ENV",
|
||||
"SITE_URL",
|
||||
"BASE_URL",
|
||||
"FLAG_OVERRIDES",
|
||||
"BROWSER_BASE_URL",
|
||||
"RATE_LIMIT_IGNORE_KEY",
|
||||
"VERCEL_*",
|
||||
"CF_PAGES_*",
|
||||
"HEROKU_APP_NAME",
|
||||
"STRIPE_PUBLISHABLE_KEY",
|
||||
"PYRO_BASE_URL",
|
||||
"PROD_OVERRIDE",
|
||||
"PYRO_MASTER_KEY",
|
||||
"PORT",
|
||||
"SQLX_OFFLINE",
|
||||
"DATABASE_URL",
|
||||
"CARGO_*",
|
||||
"RUST_*",
|
||||
"RUSTFLAGS",
|
||||
"FORCE_COLOR",
|
||||
"NEXTEST_*"
|
||||
]
|
||||
},
|
||||
"lint": {
|
||||
"env": [
|
||||
"DATABASE_URL",
|
||||
"SQLX_OFFLINE",
|
||||
"CARGO_*",
|
||||
"RUST_*",
|
||||
"RUSTFLAGS",
|
||||
"FORCE_COLOR",
|
||||
"NEXTEST_*"
|
||||
]
|
||||
},
|
||||
"lint:ancillary": {},
|
||||
"dev": {
|
||||
"cache": false,
|
||||
"persistent": true,
|
||||
"inputs": ["$TURBO_DEFAULT$", ".env*"],
|
||||
"env": ["CARGO_*", "RUST_*", "RUSTFLAGS", "FORCE_COLOR", "NEXTEST_*"],
|
||||
"passThroughEnv": ["DISPLAY", "WEBKIT_DISABLE_DMABUF_RENDERER"]
|
||||
},
|
||||
"test": {
|
||||
"env": [
|
||||
"SQLX_OFFLINE",
|
||||
"DATABASE_URL",
|
||||
"CARGO_*",
|
||||
"RUST_*",
|
||||
"RUSTFLAGS",
|
||||
"FORCE_COLOR",
|
||||
"NEXTEST_*"
|
||||
]
|
||||
},
|
||||
"fix": {
|
||||
"cache": false
|
||||
},
|
||||
"fix:ancillary": {
|
||||
"cache": false
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user