github.com/StackExchange/dnscontrol/v4@v4.11.0/documentation/language-reference/domain-modifiers/DISABLE_IGNORE_SAFETY_CHECK.md (about)

     1  ---
     2  name: DISABLE_IGNORE_SAFETY_CHECK
     3  ---
     4  
     5  `DISABLE_IGNORE_SAFETY_CHECK()` disables the safety check. Normally it is an
     6  error to insert records that match an `IGNORE()` pattern. This disables that
     7  safety check for the entire domain.
     8  
     9  It replaces the per-record `IGNORE_NAME_DISABLE_SAFETY_CHECK()` which is
    10  deprecated as of DNSControl v4.0.0.0.
    11  
    12  See [`IGNORE()`](../domain-modifiers/IGNORE.md) for more information.
    13  
    14  ## Syntax
    15  
    16  ```javascript
    17  D("example.com", REG_MY_PROVIDER, DnsProvider(DSP_MY_PROVIDER),
    18      DISABLE_IGNORE_SAFETY_CHECK,
    19      ...
    20      TXT("myhost", "mytext"),
    21      IGNORE("myhost", "*", "*"),
    22      ...
    23  ```