79425337

Date: 2025-02-09 17:15:27
Score: 1
Natty:
Report link

You cannot use the config property in dbt_project.yml. You should use flags instead:

Use flag warn_error

To transform all warnings to errors:

flags:
  warn_error: true

Use flag warn_error_options

To transform some flags to errors:

flags:
  warn_error_options:
    error: # Previously called "include"
      - NoNodesForSelectionCriteria
      - NothingToDo
    warn: # Previously called "exclude"
    silence: # To silence or ignore warnings

Sources:

Reasons:
  • Probably link only (1):
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: codug