Skip to content

Commit c2ed4b4

Browse files
committed
import trailing-whitespace
1 parent f4d7d38 commit c2ed4b4

File tree

8 files changed

+6
-8
lines changed

8 files changed

+6
-8
lines changed

.pre-commit-config.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@ repos:
66
- repo: https://github.com/pre-commit/pre-commit-hooks
77
rev: master
88
hooks:
9+
- id: trailing-whitespace
10+
- id: end-of-file-fixer
911
- id: check-yaml
1012

1113
- repo: https://github.com/psf/black
@@ -30,4 +32,3 @@ repos:
3032
hooks:
3133
- id: prettier
3234
types: [javascript]
33-

README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,4 +60,3 @@
6060
1. [Load Webpack hash bundle in Django](http://www.accordbox.com/blog/load-webpack-hash-bundle-django)
6161
1. [Code splitting with Webpack](http://www.accordbox.com/blog/code-splitting-webpack)
6262
1. [How to config HMR with Webpack and Django](http://www.accordbox.com/blog/how-config-hmr-webpack-and-django)
63-

pytest.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
[pytest]
2-
DJANGO_SETTINGS_MODULE = tests.tests_django.dj_settings
2+
DJANGO_SETTINGS_MODULE = tests.tests_django.dj_settings

setup.cfg

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,3 @@ line_length = 88
88
ignore=E501,C901,F401, W504, W503, E203, E231
99
exclude = node_modules
1010
max-line-length = 119
11-

tests/requirements/flask.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
-r base.txt
22

33
pytest-flask==1.2.0
4-
Flask==1.1.2
4+
Flask==1.1.2
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
22
"project_slug": "frontend"
3-
}
3+
}

webpack_boilerplate/frontend_template/{{cookiecutter.project_slug}}/.eslintrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,4 @@
1414
"rules": {
1515
"semi": 2
1616
}
17-
}
17+
}

webpack_boilerplate/frontend_template/{{cookiecutter.project_slug}}/README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,4 +19,3 @@ run webpack in `watch` mode.
1919
### `npm run build`
2020

2121
[production mode](https://webpack.js.org/guides/production/), Webpack would focus on minified bundles, lighter weight source maps, and optimized assets to improve load time.
22-

0 commit comments

Comments
 (0)