§
    Ð$g1  ã                   ó   — d „ Z dS )c                  ó
   — g d¢S )a€  
    Regex patterns, which will be compared against directory and file names
    case-sensitively. https://docs.python.org/3/library/re.html#re.search is the
    matching function and scans the whole string to find any pattern match. Used
    with the https://pypi.org/project/regex/ module.

    Additional remarks for pattern creation:
    - The compared paths will be always in POSIX format.
    - Each directory path will have a / at the end to allow to distinguish them
      from files.
    - Patterns for dynamic or custom paths like Virtual Environments (venv) or
      build site directories are created during plugin runtime.
    )z/__pycache__/z/\.DS_Store$z/[^/]+\.zip$z/[^/]*\.cache($|/)z
/\.vscode/z/\.vs/z/\.idea/© r   ó    ú^/var/www/html/netbox-4.1.3/venv/lib/python3.11/site-packages/material/plugins/info/patterns.pyÚget_exclusion_patternsr      s   € ðð ð ð r   N)r   r   r   r   ú<module>r      s   ððð ð ð ð r   