chore: clean files using pre-commit
This commit is contained in:
parent
f4dbc584e1
commit
0061e82ecd
|
@ -24,4 +24,3 @@ the **Create issue** button and we'll work with you to sort out the issue.
|
||||||
Happy listening! :whale:
|
Happy listening! :whale:
|
||||||
|
|
||||||
-->
|
-->
|
||||||
|
|
||||||
|
|
|
@ -51,7 +51,7 @@
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"matchPackageNames": ["node"],
|
"matchPackageNames": ["node"],
|
||||||
"allowedVersions": "/\d+[02468]$/"
|
"allowedVersions": "/\\d+[02468]$/"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"matchFiles": ["deploy/docker-compose.yml"],
|
"matchFiles": ["deploy/docker-compose.yml"],
|
||||||
|
|
|
@ -20,5 +20,6 @@ repos:
|
||||||
- id: check-vcs-permalinks
|
- id: check-vcs-permalinks
|
||||||
- id: check-merge-conflict
|
- id: check-merge-conflict
|
||||||
- id: end-of-file-fixer
|
- id: end-of-file-fixer
|
||||||
|
exclude: ^(docs/locales/.*/LC_MESSAGES)
|
||||||
- id: mixed-line-ending
|
- id: mixed-line-ending
|
||||||
- id: trailing-whitespace
|
- id: trailing-whitespace
|
||||||
|
|
|
@ -1,7 +1,4 @@
|
||||||
{
|
{
|
||||||
// Use IntelliSense to learn about possible attributes.
|
|
||||||
// Hover to view descriptions of existing attributes.
|
|
||||||
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
|
|
||||||
"version": "0.2.0",
|
"version": "0.2.0",
|
||||||
"configurations": [
|
"configurations": [
|
||||||
{
|
{
|
||||||
|
|
|
@ -46,7 +46,7 @@ urlpatterns = [
|
||||||
# with proper key.
|
# with proper key.
|
||||||
# If you don't want to use API on that step, then just use ConfirmEmailView
|
# If you don't want to use API on that step, then just use ConfirmEmailView
|
||||||
# view from:
|
# view from:
|
||||||
# djang-allauth https://github.com/pennersr/django-allauth/blob/master/allauth/account/views.py#L190
|
# https://github.com/pennersr/django-allauth/blob/a62a370681/allauth/account/views.py#L291
|
||||||
url(
|
url(
|
||||||
r"^registration/account-confirm-email/(?P<key>\w+)/?$",
|
r"^registration/account-confirm-email/(?P<key>\w+)/?$",
|
||||||
TemplateView.as_view(),
|
TemplateView.as_view(),
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
#!/usr/bin/env python
|
#!/usr/bin/env python3
|
||||||
|
|
||||||
import django
|
import django
|
||||||
import os
|
import os
|
||||||
import sys
|
import sys
|
||||||
|
|
|
@ -1,3 +1,5 @@
|
||||||
|
#!/usr/bin/env python3
|
||||||
|
|
||||||
import argparse
|
import argparse
|
||||||
import polib
|
import polib
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
#!/usr/bin/env python3
|
#!/usr/bin/env python3
|
||||||
|
|
||||||
"""
|
"""
|
||||||
This scripts handles all the heavy-lifting of parsing CSS files from ``fomantic-ui-css`` and:
|
This scripts handles all the heavy-lifting of parsing CSS files from ``fomantic-ui-css`` and:
|
||||||
|
|
||||||
|
|
|
@ -1,3 +1,5 @@
|
||||||
|
#!/usr/bin/env python3
|
||||||
|
|
||||||
import argparse
|
import argparse
|
||||||
import collections
|
import collections
|
||||||
import polib
|
import polib
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
#!/usr/bin/env bash -S -eux
|
#!/usr/bin/env -S bash -eux
|
||||||
|
|
||||||
npm_binaries () {
|
npm_binaries () {
|
||||||
command -v yarn > /dev/null && yarn bin || npm bin
|
command -v yarn > /dev/null && yarn bin || npm bin
|
||||||
|
|
|
@ -12,5 +12,3 @@ body {
|
||||||
text-decoration: var(--link-hover-text-decoration);
|
text-decoration: var(--link-hover-text-decoration);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -0,0 +1 @@
|
||||||
|
{}
|
|
@ -1,3 +1,5 @@
|
||||||
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
outdated=$(pip list -o)
|
outdated=$(pip list -o)
|
||||||
echo -n "$outdated"
|
echo -n "$outdated"
|
||||||
return_code=$(echo -n "$outdated" | wc -l)
|
return_code=$(echo -n "$outdated" | wc -l)
|
||||||
|
|
|
@ -1,3 +1,5 @@
|
||||||
|
#!/usr/bin/env python3
|
||||||
|
|
||||||
import gitlab
|
import gitlab
|
||||||
|
|
||||||
TOKEN = "CHANGEME"
|
TOKEN = "CHANGEME"
|
||||||
|
|
|
@ -1,3 +1,5 @@
|
||||||
|
#!/usr/bin/env python3
|
||||||
|
|
||||||
import argparse
|
import argparse
|
||||||
import requests
|
import requests
|
||||||
import os
|
import os
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
#!/usr/bin/env python3
|
#!/usr/bin/env python3
|
||||||
|
|
||||||
import argparse
|
import argparse
|
||||||
import json
|
import json
|
||||||
import sys
|
import sys
|
||||||
|
|
Loading…
Reference in New Issue