mirror of
https://github.com/actualbudget/actual.git
synced 2026-04-28 10:33:02 -05:00
[AI] Add --quiet flag to oxlint commands (#7055)
* [AI] Separate lint and format into distinct commands Co-authored-by: Cursor <cursoragent@cursor.com> * Update lint-staged configuration to use 'oxfmt' for formatting instead of 'yarn format:fix' * [AI] Add format checks to CI workflows Co-authored-by: Matiss Janis Aboltins <MatissJanis@users.noreply.github.com> * Refactor linting and formatting commands in package.json and GitHub workflows to streamline processes and add quiet mode for linting --------- Co-authored-by: Cursor <cursoragent@cursor.com> Co-authored-by: Matiss Janis Aboltins <MatissJanis@users.noreply.github.com>
This commit is contained in:
committed by
GitHub
parent
282a99db2f
commit
6b996c11d8
@@ -54,8 +54,8 @@
|
||||
"vrt:docker": "./bin/run-vrt",
|
||||
"rebuild-electron": "./node_modules/.bin/electron-rebuild -m ./packages/loot-core",
|
||||
"rebuild-node": "yarn workspace loot-core rebuild",
|
||||
"lint": "oxfmt --check . && oxlint --type-aware",
|
||||
"lint:fix": "oxfmt . && oxlint --fix --type-aware",
|
||||
"lint": "oxfmt --check . && oxlint --type-aware --quiet",
|
||||
"lint:fix": "oxfmt . && oxlint --fix --type-aware --quiet",
|
||||
"install:server": "yarn workspaces focus @actual-app/sync-server --production",
|
||||
"typecheck": "tsc -b && tsc -p tsconfig.root.json --noEmit && lage typecheck",
|
||||
"jq": "./node_modules/node-jq/bin/jq",
|
||||
@@ -95,7 +95,7 @@
|
||||
"oxfmt --no-error-on-unmatched-pattern"
|
||||
],
|
||||
"*.{js,mjs,jsx,ts,tsx}": [
|
||||
"oxlint --fix --type-aware"
|
||||
"oxlint --fix --type-aware --quiet"
|
||||
]
|
||||
},
|
||||
"browserslist": [
|
||||
|
||||
6
upcoming-release-notes/7055.md
Normal file
6
upcoming-release-notes/7055.md
Normal file
@@ -0,0 +1,6 @@
|
||||
---
|
||||
category: Maintenance
|
||||
authors: [MatissJanis]
|
||||
---
|
||||
|
||||
Lint: add "--quiet" flag to stop reporting warnings
|
||||
Reference in New Issue
Block a user