Frank Tubbing

Results 37 comments of Frank Tubbing

Just verified and they are all transactions that will be posted in the future. For some reason our finance department starts creating these sales invoices a month in advance. They...

One of the things blocking our migration at Beequip from `re_data` to `elementary` is that we do not have a direct way to alert end users. Our end users all...

I run into the same issue. @diorge , with what solution did you go to skip the error raised by any of the pre-commit hooks of dbt-checkpoint?

In addition to this ticket I think it would be really benificial to be able to customize what is sent in a notification. For example a description about what it...

Thanks @RobertOstermann , that fixed the issue for me.

@RobertOstermann , I jumped to conclusions but this introduces a new issue when I enable this experimental feature. With `.vscode/settings.json`: ```json { "python.defaultInterpreterPath": "${workspaceFolder}/venv/bin", "sqlfluff.executablePath": "${workspaceFolder}/venv/bin/sqlfluff", "sqlfluff.dialect": "postgres", "sqlfluff.linter.run": "onSave",...

@RobertOstermann , I've made sure that I don't make any changes to my files while it is formatting. I tried to add it once more to my `.vscode/settings.json` but it...

@RobertOstermann, aah never knew how that worked. I did some testing with my `~/.vscode/settings.json` as following: ```json { "python.defaultInterpreterPath": "${workspaceFolder}/venv/bin", "sqlfluff.executablePath": "${workspaceFolder}/venv/bin/sqlfluff", "sqlfluff.dialect": "postgres", "sqlfluff.linter.run": "onSave", "sqlfluff.format.enabled": true, "sqlfluff.experimental.format.executeInTerminal": true,...

@RobertOstermann , when we set `"editor.formatOnSave": false` does not format my SQL files when I save a file in Visual studio code. The linting works as expected. Using VSCode's inbuilt...