thacoon
thacoon
I experience the same issue. I tried the solution from #390 but IsClean returns true in some cases even if there are 0 changed files with 0 additions and 0...
I now think that `IsClean()` is working correctly but the issue was that deleted files were not staged correctly, related Issue is #223 My current workaround is to run ```go...
Having the same issue as @StragaSevera, see (app.html.heex) and using IntelliJ IDEA Ultimate on ArchLinux:  I configured my file type associations as suggested: ![Screenshot from 2023-10-22...
@JuroOravec my latest configuration is: ``` [mypy] # Mypy configuration: # https://mypy.readthedocs.io/en/latest/config_file.html enable_error_code = truthy-bool, truthy-iterable, redundant-expr, unused-awaitable, ignore-without-code, possibly-undefined, redundant-self, explicit_package_bases = true ignore_missing_imports = true strict = true...
@DanielBaumert as a workaround I use [chokedir](https://www.npmjs.com/package/chokidar-cli): `npm install chokidar-cli --save-dev` And then in my `package.json` I have in one of my projects for example the following: ``` ... "scripts":...