This is an automated email from the ASF dual-hosted git repository.
zehnder pushed a commit to branch
3253-revert-broken-auto-lint-fix-in-git-pre-commit-hook
in repository https://gitbox.apache.org/repos/asf/streampipes.git
The following commit(s) were added to
refs/heads/3253-revert-broken-auto-lint-fix-in-git-pre-commit-hook by this push:
new bfd08b7a1d fix(#3253): Change linting back to check instead of write
bfd08b7a1d is described below
commit bfd08b7a1dea10946d9320db48ec5f46ffe9518a
Author: Philipp Zehnder <[email protected]>
AuthorDate: Thu Sep 26 09:53:07 2024 +0200
fix(#3253): Change linting back to check instead of write
---
ui/.lintstagedrc.json | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/ui/.lintstagedrc.json b/ui/.lintstagedrc.json
index 059fea6ac0..ca7497c491 100644
--- a/ui/.lintstagedrc.json
+++ b/ui/.lintstagedrc.json
@@ -1,4 +1,4 @@
{
- "src/**/*.ts": "prettier --write",
- "src/**/*.ts": ["ng-lint-staged lint --fix"]
+ "*.*": "prettier --check",
+ "src/**/*.ts": ["ng-lint-staged lint --"]
}