We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent de5bd74 commit b84bfa2Copy full SHA for b84bfa2
project/package.json
@@ -5,7 +5,8 @@
5
"scripts": {
6
"watch": "npm i && bower install && gulp watch",
7
"build": "npm i && bower install && gulp",
8
- "build_noninteractive": "npm i && bower --config.interactive=false install && gulp"
+ "build_noninteractive": "npm i && bower --config.interactive=false install && gulp",
9
+ "fix": "PREFIX=\"# -*- coding: utf-8 -*-\"; find . -name '._*' | xargs rm ; for f in $(find . -name '*.py' -and -not -path '*/venv/*'); do echo \"=================\" ; echo $f; autopep8 -ri --max-line-length=10000 $f; flake8 $f; isort -rc $f; grep -qFe \"$PREFIX\" $f || echo \"$PREFIX\n$(cat $f)\" > $f ; done "
10
},
11
"repository": {
12
"type": "git",
0 commit comments