Results 23 comments of Łukasz Rogalski

Same goes for NAME. Minimal repro: ```sql SELECT 1 AS NAME; ``` Output: ``` $ sqlfluff lint --dialect snowflake repro.sql == [repro.sql] FAIL L: 1 | P: 13 | RF04...

@RafeSacks In terms of comments that can help inference, we'd likely opt for [PEP484](https://www.python.org/dev/peps/pep-0484/) instead of custom Pylint comment syntax. About flow analysis, there is [rogalski/flow](https://github.com/rogalski/flow) but it's still in...

Have we ever profiled what is a bottleneck in pylint launch? If significant part of run is to build an AST, re-build it to astroid form, apply all brain hints...