Compare commits

...

6 Commits

Author SHA1 Message Date
Matiss Janis Aboltins
ef90f548c1 Refactor linting and formatting commands in package.json and GitHub workflows to streamline processes and add quiet mode for linting 2026-03-01 21:13:28 +00:00
Matiss Janis Aboltins
6074b05665 Merge branch 'matiss/separate-lint-format' of github.com:actualbudget/actual into matiss/separate-lint-format 2026-03-01 21:12:01 +00:00
Matiss Janis Aboltins
059504ee4f Merge branch 'master' into matiss/separate-lint-format 2026-03-01 21:11:35 +00:00
Cursor Agent
93f3dcf3f5 [AI] Add format checks to CI workflows
Co-authored-by: Matiss Janis Aboltins <MatissJanis@users.noreply.github.com>
2026-02-22 21:46:41 +00:00
Matiss Janis Aboltins
5ff1544699 Update lint-staged configuration to use 'oxfmt' for formatting instead of 'yarn format:fix' 2026-02-22 21:26:17 +00:00
Matiss Janis Aboltins
057c3056f4 [AI] Separate lint and format into distinct commands
Co-authored-by: Cursor <cursoragent@cursor.com>
2026-02-22 21:23:47 +00:00
2 changed files with 9 additions and 3 deletions

View File

@@ -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 -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": [

View File

@@ -0,0 +1,6 @@
---
category: Maintenance
authors: [MatissJanis]
---
Lint: add "--quiet" flag to stop reporting warnings