#
# This file is part of the Valkyrja Ruff package.
#
# Copyright (c) 2016-present Melech Mizrachi
#
# Released under the MIT License. See LICENSE.md for details.
#

# The package this repository is. COPYRIGHT_HEADER.md in the .github repository
# maps every repository to its own identifier.
IDENTIFIER='Valkyrja Ruff'

# The files that carry no copyright header. Every other tracked file must carry
# it, so a new file fails the check until a person adds the header or adds the
# file here.
EXCLUDED=(
    # A document, a lock file, a workflow, and a configuration file hold no
    # program code.
    '*.md'
    '*.yml'
    '*.toml'
    '*.lock'
    '*.gitattributes'
    '*.editorconfig'
    '*.gitignore'
    '*.python-version'

    # The PEP 561 marker. It is empty by specification: its presence is the whole
    # signal, and any content would be a syntax error to a type checker reading it.
    '*py.typed'

    # An empty placeholder that keeps an empty directory in git. The file holds
    # no content at all.
    '*.gitkeep'
)
