Merge branch 'master' of github.com:pydanny/cookiecutter-django

This commit is contained in:
Daniel Roy Greenfeld 2015-09-25 23:28:39 -07:00
commit 8f7b5d5cf1
8 changed files with 53 additions and 5 deletions

View File

@ -12,7 +12,7 @@ trim_trailing_whitespace = true
indent_style = space indent_style = space
indent_size = 4 indent_size = 4
[*.yml] [*.{html,css,scss,json,yml}]
indent_style = space indent_style = space
indent_size = 2 indent_size = 2

View File

@ -2,3 +2,16 @@ Linters
======= =======
.. index:: linters .. index:: linters
flake8
-------
To run flake8:
$ flake8
The config for flake8 is located in setup.cfg. It specifies:
* Set max line length to 120 chars
* Exclude .tox,.git,*/migrations/*,*/static/CACHE/*,docs,node_modules

View File

@ -19,7 +19,7 @@ known_first_party={{ cookiecutter.repo_name }}
multi_line_output=3 multi_line_output=3
default_section=THIRDPARTY default_section=THIRDPARTY
[*.yml] [*.{html,css,scss,json,yml}]
indent_style = space indent_style = space
indent_size = 2 indent_size = 2

View File

@ -55,3 +55,6 @@ node_modules/
# virtual environments # virtual environments
.env .env
# User-uploaded media
{{ cookiecutter.repo_name }}/media/

View File

@ -17,7 +17,7 @@ Collectfast==0.2.3
# Mailgun Support # Mailgun Support
# --------------- # ---------------
django-mailgun==0.6.0 django-mailgun==0.7.2
{% if cookiecutter.use_sentry == "y" -%} {% if cookiecutter.use_sentry == "y" -%}
# Raven is the Sentry client # Raven is the Sentry client

View File

@ -1,4 +1,3 @@
[flake8] [flake8]
#ignore = E265
max-line-length = 120 max-line-length = 120
exclude = .tox,.git,*/migrations/*,*/static/CACHE/*,docs exclude = .tox,.git,*/migrations/*,*/static/CACHE/*,docs,node_modules

View File

@ -28,3 +28,11 @@
float: none !important; float: none !important;
} }
} }
/* Display django-debug-toolbar.
See https://github.com/django-debug-toolbar/django-debug-toolbar/issues/742
and https://github.com/pydanny/cookiecutter-django/issues/317
*/
[hidden][style="display: block;"] {
display: block !important;
}

View File

@ -13,3 +13,28 @@
background-color: #f2dede; background-color: #f2dede;
border-color: #eed3d7; border-color: #eed3d7;
} }
/* This is a fix for the bootstrap4 alpha release */
@media (max-width: 47.9em) {
.navbar-nav .nav-item {
float: none;
width: 100%;
display: inline-block;
}
.navbar-nav .nav-item + .nav-item {
margin-left: 0;
}
.nav.navbar-nav.pull-right {
float: none !important;
}
}
/* Display django-debug-toolbar.
See https://github.com/django-debug-toolbar/django-debug-toolbar/issues/742
and https://github.com/pydanny/cookiecutter-django/issues/317
*/
[hidden][style="display: block;"] {
display: block !important;
}