diff --git a/docs/concepts/models/overview.md b/docs/concepts/models/overview.md index eaa3ce7393..c14f2977e1 100644 --- a/docs/concepts/models/overview.md +++ b/docs/concepts/models/overview.md @@ -447,7 +447,7 @@ to `false` causes SQLMesh to disable query canonicalization & simplification. Th : Whether the model's query will be validated at compile time. This attribute is `false` by default. Setting it to `true` causes SQLMesh to raise an error instead of emitting warnings. This will display invalid columns in your SQL statements along with models containing `SELECT *` that cannot be automatically expanded to list out all columns. This ensures SQL is verified locally before time and money are spent running the SQL in your data warehouse. !!! warning - This flag is deprecated as of v.0.159.7+ in favor of the [linter](../linter.md). To preserve validation during compilation, the [built-in rules](../linter.md#built-in) that check for correctness should be [configured](../../guides/configuration.md#linter) to error severity. + This flag is deprecated as of v.0.159.7+ in favor of the [linter](../../guides/linter.md). To preserve validation during compilation, the [built-in rules](../../guides/linter.md#built-in-rules) that check for correctness should be [configured](../../guides/linter.md#rule-violation-behavior) to error severity. ### ignored_rules : Specifies which linter rules should be ignored/excluded for this model. diff --git a/docs/guides/configuration.md b/docs/guides/configuration.md index a54b0661c8..e59273d218 100644 --- a/docs/guides/configuration.md +++ b/docs/guides/configuration.md @@ -1112,7 +1112,7 @@ As demonstrated in these examples, the `environment_naming_info` is available wi SQLMesh provides a linter that checks for potential issues in your models' code. Enable it and specify which linting rules to apply in the configuration file's `linter` key. -Learn more about linting configuration on the [linting concepts page](../concepts/linter.md). +Learn more about linting configuration in the [linting guide](./linter.md). ### Debug mode