3YOURMIND / django-migration-linter

:rocket: Detect backward incompatible migrations for your django project
https://pypi.python.org/pypi/django-migration-linter/
Apache License 2.0
514 stars 56 forks source link

Issue/235/support makemmigration customisation #266

Open rsmith013 opened 9 months ago

rsmith013 commented 9 months ago

Harmonises the makemigrations and lintmigrations config loading code and sorts the priority order. As it was before, only Falsy default values could be overwritten by config options. I would also expect the command line to take priority over the config files.

This PR makes an opinionated preference for ordering of config sources where higher priority sources override lower priority settings. Open to discussion:

1. Command line
2. Django Settings
3. Config files
4. pyproject.toml

closes #235