Alan Cruickshank

Results 17 issues of Alan Cruickshank

The README was out of date with the supported versions, so this updates that. It also adds test coverage for dbt 1.6 (the latest version https://pypi.org/project/dbt-core/). Perhaps more experimentally, I've...

This resolves #6238. Switches from `appdirs` (which isn't maintained anymore) to `platformdirs`. This however involves revisiting our XDG hack, and I'm not on a MacOS machine to test this (and...

I think this resolves #5463. Arguably that issue wasn't a _bug_ per-se but it was a very opaque behaviour. This adds a wrapper around functions so that if we try...

This adds a section on the config API to the internal API docs section. For the docs, most of this is delegated to `autodoc`, but that highlighted that many of...

### Search before asking - [X] I searched the [issues](https://github.com/sqlfluff/sqlfluff/issues) and found no similar issues. ### Description As raised as part of #6257, @barrywhart has raised the issue that the...

enhancement

We add a gap match at the end, and not at the start. That feels inconsistent, but I'm also not sure about the implications of that given the test suite...

I'm getting issues where RF06 says that I'm unnecessarily quoting `"DEFAULT"` in this query: ```sql select id, created_at, "DEFAULT" from some_table ``` ...but unquoting it leads to this: ``` 10:01:44...