We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0ce254a commit 3053326Copy full SHA for 3053326
src/dbt_core_interface/sqlfluff_util.py
@@ -14,6 +14,7 @@
14
def get_linter(
15
config: FluffConfig,
16
stream: FileOutput,
17
+ config_last_modification: Optional[str] = None,
18
):
19
"""Get linter."""
20
from sqlfluff.cli.commands import get_linter_and_formatter
@@ -60,7 +61,7 @@ def get_config(
60
61
stream = FileOutput(config, os.devnull)
62
atexit.register(stream.close)
63
- return config, stream
64
+ return config, stream, config_last_modification
65
66
67
def lint_command(
0 commit comments