├── .gitignore ├── COPYING ├── DjangoLint ├── AstCheckers │ ├── __init__.py │ ├── admin.py │ ├── model_fields.py │ ├── model_methods.py │ ├── settings.py │ ├── size.py │ └── utils.py ├── __init__.py └── script.py ├── README.md ├── django-lint ├── django-lint.1 ├── django_lint_example ├── __init__.py ├── example │ ├── __init__.py │ ├── models │ │ └── __init__.py │ └── views.py ├── manage.py ├── settings.py └── urls.py └── setup.py /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | *.egg-info 3 | /build 4 | /dist 5 | -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lamby/django-lint/HEAD/COPYING -------------------------------------------------------------------------------- /DjangoLint/AstCheckers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lamby/django-lint/HEAD/DjangoLint/AstCheckers/__init__.py -------------------------------------------------------------------------------- /DjangoLint/AstCheckers/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lamby/django-lint/HEAD/DjangoLint/AstCheckers/admin.py -------------------------------------------------------------------------------- /DjangoLint/AstCheckers/model_fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lamby/django-lint/HEAD/DjangoLint/AstCheckers/model_fields.py -------------------------------------------------------------------------------- /DjangoLint/AstCheckers/model_methods.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lamby/django-lint/HEAD/DjangoLint/AstCheckers/model_methods.py -------------------------------------------------------------------------------- /DjangoLint/AstCheckers/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lamby/django-lint/HEAD/DjangoLint/AstCheckers/settings.py -------------------------------------------------------------------------------- /DjangoLint/AstCheckers/size.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lamby/django-lint/HEAD/DjangoLint/AstCheckers/size.py -------------------------------------------------------------------------------- /DjangoLint/AstCheckers/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lamby/django-lint/HEAD/DjangoLint/AstCheckers/utils.py -------------------------------------------------------------------------------- /DjangoLint/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /DjangoLint/script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lamby/django-lint/HEAD/DjangoLint/script.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lamby/django-lint/HEAD/README.md -------------------------------------------------------------------------------- /django-lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lamby/django-lint/HEAD/django-lint -------------------------------------------------------------------------------- /django-lint.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lamby/django-lint/HEAD/django-lint.1 -------------------------------------------------------------------------------- /django_lint_example/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django_lint_example/example/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /django_lint_example/example/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lamby/django-lint/HEAD/django_lint_example/example/models/__init__.py -------------------------------------------------------------------------------- /django_lint_example/example/views.py: -------------------------------------------------------------------------------- 1 | # Create your views here. 2 | -------------------------------------------------------------------------------- /django_lint_example/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lamby/django-lint/HEAD/django_lint_example/manage.py -------------------------------------------------------------------------------- /django_lint_example/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lamby/django-lint/HEAD/django_lint_example/settings.py -------------------------------------------------------------------------------- /django_lint_example/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lamby/django-lint/HEAD/django_lint_example/urls.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lamby/django-lint/HEAD/setup.py --------------------------------------------------------------------------------