# This file contains glob patterns used to match files and
# directories that ought (not) to be considered as license
# candidates by the `licensa` CLI.
#
# Pattern matching follows the same convention as `.gitignore`.
#
# It is up to the end user to decided which files to license.
# However, we strongly discourage users from removing the patterns
# provided in this file. Rather, add a new glob pattern to the
# `overrides` section at the end of this file.

# =====================================================
# Common
# =====================================================

**/README
**/README.md
**/README.txt

**/LICENSE
**/LICENSE.md
**/LICENSE.txt

# =====================================================
# Data formats
# =====================================================

**/*.json
**/*.json
**/*.yml
**/*.yaml
**/*.toml
**/*.xml

# =====================================================
# Misc
# =====================================================

# =====================================================
# Build artifacts
# =====================================================

**/build/
**/dist/

# =====================================================
# Generated files
# =====================================================

**/*.class
**/*.jar
**/*.war
**/*.ear
**/*.zip
**/*.tar.gz

# =====================================================
# Temporary files
# =====================================================

**/*.tmp
**/*.log
**/*.log.*
**/*.swp

# =====================================================
# Text files / Documentation files
**/*.txt
**/*.md
**/*.doc
**/*.docx
**/*.pdf
# =====================================================

# =====================================================
# Configuration files
# =====================================================

**/*.ini
**/*.cfg
**/*.conf

# =====================================================
# IDE-specific files
# =====================================================

**/.idea/
**/.vscode/

# =====================================================
# Compiled binaries
# =====================================================

**/*.exe
**/*.dll
**/*.so
**/*.dylib

# =====================================================
# Package manager files
# =====================================================

**/node_modules/
**/yarn.lock
**/package-lock.json
**/npm-debug.log

**/*.lock

# =====================================================
# Image and binary files
# =====================================================

**/*.png
**/*.jpg
**/*.jpeg
**/*.gif
**/*.bmp
**/*.ico
**/*.svg
**/*.woff
**/*.woff2

# =====================================================
# Database files
# =====================================================

**/*.db
**/*.sqlite
**/*.dbf
**/*.sql

# =====================================================
# Backup files
# =====================================================
**/*~
**/*.bak
**/*.backup
**/*.swp
**/*.save

# =====================================================
# =====================================================
# Overrides
# =====================================================
