From 96af69af3bb035a7f8301814fbed9ae01cb7096f Mon Sep 17 00:00:00 2001 From: Peter Dave Hello Date: Wed, 9 Dec 2020 15:58:44 +0800 Subject: [PATCH] Ensure final newline char in text files, following .editorconfig (#575) --- .github/ISSUE_TEMPLATE.md | 2 +- README.md | 2 +- bin/build_web_extensions | 2 +- bin/build_web_site | 2 +- bin/deploy_web_extensions | 2 +- cli/deploy | 2 +- cli/lesspass/__init__.py | 2 +- cli/requirements.txt | 1 + cli/test | 2 +- cli/tests/__init__.py | 1 + containers/.env | 2 +- containers/.gitignore | 2 +- containers/backend/.gitignore | 2 +- containers/backend/api/__init__.py | 1 + containers/backend/api/migrations/__init__.py | 1 + containers/backend/api/models.py | 1 - containers/backend/api/tests/__init__.py | 1 + containers/backend/api/tests/test_auth.py | 2 +- containers/backend/entrypoint.sh | 2 +- containers/backend/lesspass/__init__.py | 1 + containers/backend/lesspass/settings.py | 1 - containers/backend/wait_db.py | 2 +- containers/deploy | 2 +- containers/docker-compose.yml | 2 +- containers/ssl/domains.ext | 2 +- containers/webserver/Dockerfile | 2 +- containers/webserver/entrypoint.sh | 2 +- containers/webserver/httpd-default.conf | 2 +- mobile/.gitattributes | 2 +- mobile/.watchmanconfig | 2 +- mobile/android/app/src/main/java/com/lesspass/android/Crypto.java | 1 - .../android/app/src/main/java/com/lesspass/android/LessPassModule.java | 2 +- .../app/src/main/java/com/lesspass/android/LessPassReactPackage.java | 2 +- .../android/app/src/main/java/com/lesspass/android/MainApplication.java | 2 +- mobile/android/app/src/test/java/com/lesspass/android/CryptoTest.java | 2 +- mobile/android/build.gradle | 2 +- mobile/app.json | 2 +- packages/deploy | 2 +- packages/lesspass-pure/cypress/support/commands.js | 1 + packages/lesspass-pure/src/components/Avatar.vue | 1 - packages/lesspass-pure/src/components/PasswordProfile.vue | 1 - packages/lesspass-pure/src/i18n/de.json | 2 +- packages/lesspass-pure/src/i18n/es.json | 2 +- packages/lesspass-pure/src/i18n/fr.json | 2 +- packages/lesspass-pure/src/i18n/pl.json | 2 +- packages/lesspass-pure/src/i18n/pt.json | 2 +- packages/lesspass-pure/src/i18n/ru.json | 2 +- packages/lesspass-pure/src/i18n/zh-CN.json | 2 +- packages/lesspass-site/.gitignore | 2 +- packages/lesspass-site/Dockerfile | 2 +- packages/lesspass-site/images/cover.original.txt | 2 +- packages/lesspass-site/nginx.conf | 1 - packages/lesspass-web-extension/.gitignore | 2 +- packages/lesspass-web-extension/extension/icons/loading.svg | 2 +- sandbox/.gitignore | 2 +- sandbox/copy-paste-async.html | 2 -- 56 files changed, 49 insertions(+), 50 deletions(-) diff --git a/.github/ISSUE_TEMPLATE.md b/.github/ISSUE_TEMPLATE.md index 114cdb9..7f1dc34 100644 --- a/.github/ISSUE_TEMPLATE.md +++ b/.github/ISSUE_TEMPLATE.md @@ -1,2 +1,2 @@ \ No newline at end of file +👉 https://opencollective.com/lesspass/donate --> diff --git a/README.md b/README.md index ada503a..5b0ea77 100644 --- a/README.md +++ b/README.md @@ -68,4 +68,4 @@ Thank you to all our backers! There is no sponsor for now -Are you a member of a company or organization that might be willing to sponsor LessPass? Please ask them to consider supporting this open source project by [becoming a sponsor](https://opencollective.com/lesspass#sponsor)! \ No newline at end of file +Are you a member of a company or organization that might be willing to sponsor LessPass? Please ask them to consider supporting this open source project by [becoming a sponsor](https://opencollective.com/lesspass#sponsor)! diff --git a/bin/build_web_extensions b/bin/build_web_extensions index 4d3ca0b..5420374 100755 --- a/bin/build_web_extensions +++ b/bin/build_web_extensions @@ -112,4 +112,4 @@ sed -i -E "s/\"lesspass-pure\": \"([0-9]+)\.([0-9]+)\.([0-9]+)\"/\"lesspass-pure sed -i -E "s/\"version\": \"([0-9]+)\.([0-9]+)\.([0-9]+)\"/\"version\": \"${new_version}\"/g" packages/lesspass-web-extension/package.json sed -i -E "s/\"version\": \"([0-9]+)\.([0-9]+)\.([0-9]+)\"/\"version\": \"${new_version}\"/g" packages/lesspass-web-extension/extension/manifest.json build -commit_and_push \ No newline at end of file +commit_and_push diff --git a/bin/build_web_site b/bin/build_web_site index 4535fce..4b0ec44 100755 --- a/bin/build_web_site +++ b/bin/build_web_site @@ -109,4 +109,4 @@ echo "Latest lesspass-pure version is ${latest_lesspass_pure_version}" sed -i -E "s/\"lesspass-pure\": \"([0-9]+)\.([0-9]+)\.([0-9]+)\"/\"lesspass-pure\": \"${latest_lesspass_pure_version}\"/g" packages/lesspass-site/package.json sed -i -E "s/\"version\": \"([0-9]+)\.([0-9]+)\.([0-9]+)\"/\"version\": \"${new_version}\"/g" packages/lesspass-site/package.json build -commit_and_push \ No newline at end of file +commit_and_push diff --git a/bin/deploy_web_extensions b/bin/deploy_web_extensions index 46bbbbd..9525e96 100755 --- a/bin/deploy_web_extensions +++ b/bin/deploy_web_extensions @@ -24,4 +24,4 @@ function release_web_extensions { echo "Upload them on https://addons.mozilla.org/en-US/developers/" } -release_web_extensions \ No newline at end of file +release_web_extensions diff --git a/cli/deploy b/cli/deploy index 11a430c..546011a 100755 --- a/cli/deploy +++ b/cli/deploy @@ -22,4 +22,4 @@ function push_cli_on_pypi { twine upload dist/* } -push_cli_on_pypi \ No newline at end of file +push_cli_on_pypi diff --git a/cli/lesspass/__init__.py b/cli/lesspass/__init__.py index 1fc34e2..7afc036 100644 --- a/cli/lesspass/__init__.py +++ b/cli/lesspass/__init__.py @@ -47,4 +47,4 @@ Examples: Copyright: Copyright © 2018 Guillaume Vincent . License GPLv3: GNU GPL version 3 . - This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law.""" \ No newline at end of file + This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law.""" diff --git a/cli/requirements.txt b/cli/requirements.txt index e69de29..8b13789 100644 --- a/cli/requirements.txt +++ b/cli/requirements.txt @@ -0,0 +1 @@ + diff --git a/cli/test b/cli/test index e3f291d..eb04b65 100755 --- a/cli/test +++ b/cli/test @@ -8,4 +8,4 @@ python -m pip install --upgrade pip python -m pip install -r requirements.txt python -m pip install -r test-requirements.txt export PYTHONPATH='.' -python -m unittest discover \ No newline at end of file +python -m unittest discover diff --git a/cli/tests/__init__.py b/cli/tests/__init__.py index e69de29..8b13789 100644 --- a/cli/tests/__init__.py +++ b/cli/tests/__init__.py @@ -0,0 +1 @@ + diff --git a/containers/.env b/containers/.env index 7ce6855..b51ef71 100644 --- a/containers/.env +++ b/containers/.env @@ -21,4 +21,4 @@ EMAIL_PORT=25 EMAIL_HOST_USER= EMAIL_HOST_PASSWORD= EMAIL_USE_TLS=0 -EMAIL_USE_SSL=0 \ No newline at end of file +EMAIL_USE_SSL=0 diff --git a/containers/.gitignore b/containers/.gitignore index c569b6d..6feebf0 100644 --- a/containers/.gitignore +++ b/containers/.gitignore @@ -1,3 +1,3 @@ ssl/* !ssl/domains.ext -!ssl/README.md \ No newline at end of file +!ssl/README.md diff --git a/containers/backend/.gitignore b/containers/backend/.gitignore index d393cd6..f27a17c 100644 --- a/containers/backend/.gitignore +++ b/containers/backend/.gitignore @@ -1,2 +1,2 @@ www -*.sqlite3 \ No newline at end of file +*.sqlite3 diff --git a/containers/backend/api/__init__.py b/containers/backend/api/__init__.py index e69de29..8b13789 100644 --- a/containers/backend/api/__init__.py +++ b/containers/backend/api/__init__.py @@ -0,0 +1 @@ + diff --git a/containers/backend/api/migrations/__init__.py b/containers/backend/api/migrations/__init__.py index e69de29..8b13789 100644 --- a/containers/backend/api/migrations/__init__.py +++ b/containers/backend/api/migrations/__init__.py @@ -0,0 +1 @@ + diff --git a/containers/backend/api/models.py b/containers/backend/api/models.py index e0604d2..460d75a 100644 --- a/containers/backend/api/models.py +++ b/containers/backend/api/models.py @@ -87,4 +87,3 @@ class Password(DateMixin): def __str__(self): return str(self.id) - diff --git a/containers/backend/api/tests/__init__.py b/containers/backend/api/tests/__init__.py index e69de29..8b13789 100644 --- a/containers/backend/api/tests/__init__.py +++ b/containers/backend/api/tests/__init__.py @@ -0,0 +1 @@ + diff --git a/containers/backend/api/tests/test_auth.py b/containers/backend/api/tests/test_auth.py index ef083b4..328531e 100644 --- a/containers/backend/api/tests/test_auth.py +++ b/containers/backend/api/tests/test_auth.py @@ -79,4 +79,4 @@ class OldLoginTestCase(APITestCase): headers = {"HTTP_AUTHORIZATION": "Bearer {token}".format(token=request.data["access"])} request = self.client.get("/api/passwords/", **headers) self.assertEqual(request.status_code, 200) - self.assertEqual(request.data["results"][0]['login'], password.login) \ No newline at end of file + self.assertEqual(request.data["results"][0]['login'], password.login) diff --git a/containers/backend/entrypoint.sh b/containers/backend/entrypoint.sh index 8de9a2f..3db6532 100755 --- a/containers/backend/entrypoint.sh +++ b/containers/backend/entrypoint.sh @@ -4,4 +4,4 @@ python wait_db.py python manage.py migrate python manage.py collectstatic --clear --no-input -exec "$@" \ No newline at end of file +exec "$@" diff --git a/containers/backend/lesspass/__init__.py b/containers/backend/lesspass/__init__.py index e69de29..8b13789 100644 --- a/containers/backend/lesspass/__init__.py +++ b/containers/backend/lesspass/__init__.py @@ -0,0 +1 @@ + diff --git a/containers/backend/lesspass/settings.py b/containers/backend/lesspass/settings.py index a9762b7..e484d74 100644 --- a/containers/backend/lesspass/settings.py +++ b/containers/backend/lesspass/settings.py @@ -201,4 +201,3 @@ EMAIL_PORT = env.int("EMAIL_PORT", default=25) EMAIL_SUBJECT_PREFIX = os.getenv("EMAIL_SUBJECT_PREFIX", "[LessPass] ") EMAIL_USE_TLS = env.bool("EMAIL_USE_TLS", default=False) EMAIL_USE_SSL = env.bool("EMAIL_USE_SSL", default=False) - diff --git a/containers/backend/wait_db.py b/containers/backend/wait_db.py index d2a513e..7f8ab47 100644 --- a/containers/backend/wait_db.py +++ b/containers/backend/wait_db.py @@ -16,4 +16,4 @@ while timeout != 0: except socket.error as ex: timeout -= 1 print('wait for db to start... (%s sec remaining)' % timeout) - time.sleep(1) \ No newline at end of file + time.sleep(1) diff --git a/containers/deploy b/containers/deploy index 17d1f5a..8c81411 100755 --- a/containers/deploy +++ b/containers/deploy @@ -29,4 +29,4 @@ function build_and_push_containers { build_and_push_container frontend } -build_and_push_containers \ No newline at end of file +build_and_push_containers diff --git a/containers/docker-compose.yml b/containers/docker-compose.yml index 05f36c8..c431df9 100644 --- a/containers/docker-compose.yml +++ b/containers/docker-compose.yml @@ -56,4 +56,4 @@ services: - www:/var/www/html/ volumes: postgresql: - www: \ No newline at end of file + www: diff --git a/containers/ssl/domains.ext b/containers/ssl/domains.ext index e2fa373..3e665cb 100644 --- a/containers/ssl/domains.ext +++ b/containers/ssl/domains.ext @@ -6,4 +6,4 @@ subjectAltName = @alt_names DNS.1 = lesspass.local DNS.2 = www.lesspass.local DNS.3 = api.lesspass.local -DNS.4 = admin.lesspass.local \ No newline at end of file +DNS.4 = admin.lesspass.local diff --git a/containers/webserver/Dockerfile b/containers/webserver/Dockerfile index adde54e..478b09c 100644 --- a/containers/webserver/Dockerfile +++ b/containers/webserver/Dockerfile @@ -7,4 +7,4 @@ COPY ./httpd.conf /usr/local/apache2/conf/httpd.conf COPY ./httpd-ssl.conf /usr/local/apache2/conf/extra/httpd-ssl.conf COPY entrypoint.sh /entrypoint.sh ENTRYPOINT ["/entrypoint.sh"] -CMD ["httpd-foreground"] \ No newline at end of file +CMD ["httpd-foreground"] diff --git a/containers/webserver/entrypoint.sh b/containers/webserver/entrypoint.sh index e8fb97b..d154ab0 100755 --- a/containers/webserver/entrypoint.sh +++ b/containers/webserver/entrypoint.sh @@ -5,4 +5,4 @@ sed -i "s~EMAIL~${EMAIL}~" conf/httpd.conf conf/extra/httpd-ssl.conf sed -i "s~CRT_PATH~${CRT_PATH}~" conf/extra/httpd-ssl.conf sed -i "s~KEY_PATH~${KEY_PATH}~" conf/extra/httpd-ssl.conf -exec "$@" \ No newline at end of file +exec "$@" diff --git a/containers/webserver/httpd-default.conf b/containers/webserver/httpd-default.conf index d96baf6..b5b54fc 100644 --- a/containers/webserver/httpd-default.conf +++ b/containers/webserver/httpd-default.conf @@ -87,4 +87,4 @@ HostnameLookups Off # RequestReadTimeout header=20-40,MinRate=500 body=20,MinRate=500 - \ No newline at end of file + diff --git a/mobile/.gitattributes b/mobile/.gitattributes index eb8cfc9..23ac65e 100644 --- a/mobile/.gitattributes +++ b/mobile/.gitattributes @@ -1,2 +1,2 @@ # specific for windows script files -*.bat text eol=crlf \ No newline at end of file +*.bat text eol=crlf diff --git a/mobile/.watchmanconfig b/mobile/.watchmanconfig index 9e26dfe..0967ef4 100644 --- a/mobile/.watchmanconfig +++ b/mobile/.watchmanconfig @@ -1 +1 @@ -{} \ No newline at end of file +{} diff --git a/mobile/android/app/src/main/java/com/lesspass/android/Crypto.java b/mobile/android/app/src/main/java/com/lesspass/android/Crypto.java index 37596e9..01c2498 100644 --- a/mobile/android/app/src/main/java/com/lesspass/android/Crypto.java +++ b/mobile/android/app/src/main/java/com/lesspass/android/Crypto.java @@ -43,4 +43,3 @@ public class Crypto { return String.format("%0" + (bytes.length << 1) + "x", bi); } } - diff --git a/mobile/android/app/src/main/java/com/lesspass/android/LessPassModule.java b/mobile/android/app/src/main/java/com/lesspass/android/LessPassModule.java index fced134..5f38ed7 100644 --- a/mobile/android/app/src/main/java/com/lesspass/android/LessPassModule.java +++ b/mobile/android/app/src/main/java/com/lesspass/android/LessPassModule.java @@ -34,4 +34,4 @@ public class LessPassModule extends ReactContextBaseJavaModule { String result = new Crypto().hmac(masterPassword); promise.resolve(result); } -} \ No newline at end of file +} diff --git a/mobile/android/app/src/main/java/com/lesspass/android/LessPassReactPackage.java b/mobile/android/app/src/main/java/com/lesspass/android/LessPassReactPackage.java index 9dc98e6..29683af 100644 --- a/mobile/android/app/src/main/java/com/lesspass/android/LessPassReactPackage.java +++ b/mobile/android/app/src/main/java/com/lesspass/android/LessPassReactPackage.java @@ -21,4 +21,4 @@ public class LessPassReactPackage implements ReactPackage { modules.add(new LessPassModule(reactContext)); return modules; } -} \ No newline at end of file +} diff --git a/mobile/android/app/src/main/java/com/lesspass/android/MainApplication.java b/mobile/android/app/src/main/java/com/lesspass/android/MainApplication.java index 63c651a..f324927 100644 --- a/mobile/android/app/src/main/java/com/lesspass/android/MainApplication.java +++ b/mobile/android/app/src/main/java/com/lesspass/android/MainApplication.java @@ -76,4 +76,4 @@ public class MainApplication extends Application implements ReactApplication { } } } -} \ No newline at end of file +} diff --git a/mobile/android/app/src/test/java/com/lesspass/android/CryptoTest.java b/mobile/android/app/src/test/java/com/lesspass/android/CryptoTest.java index 406679b..a40227b 100644 --- a/mobile/android/app/src/test/java/com/lesspass/android/CryptoTest.java +++ b/mobile/android/app/src/test/java/com/lesspass/android/CryptoTest.java @@ -28,4 +28,4 @@ public class CryptoTest { String result = new Crypto().hmac("password"); assertEquals("e56a207acd1e6714735487c199c6f095844b7cc8e5971d86c003a7b6f36ef51e", result); } -} \ No newline at end of file +} diff --git a/mobile/android/build.gradle b/mobile/android/build.gradle index 0111dc9..12b3e3b 100644 --- a/mobile/android/build.gradle +++ b/mobile/android/build.gradle @@ -52,4 +52,4 @@ def getNpmVersion() { def getNpmVersionArray() { def (major, minor, patch) = getNpmVersion().tokenize('.') return [Integer.parseInt(major), Integer.parseInt(minor), Integer.parseInt(patch)] as int[] -} \ No newline at end of file +} diff --git a/mobile/app.json b/mobile/app.json index 4482b74..a04f416 100644 --- a/mobile/app.json +++ b/mobile/app.json @@ -1,4 +1,4 @@ { "name": "LessPass", "displayName": "LessPass" -} \ No newline at end of file +} diff --git a/packages/deploy b/packages/deploy index 87ee158..755c6a2 100755 --- a/packages/deploy +++ b/packages/deploy @@ -18,4 +18,4 @@ do yarn publish --non-interactive pwd popd -done \ No newline at end of file +done diff --git a/packages/lesspass-pure/cypress/support/commands.js b/packages/lesspass-pure/cypress/support/commands.js index e69de29..8b13789 100644 --- a/packages/lesspass-pure/cypress/support/commands.js +++ b/packages/lesspass-pure/cypress/support/commands.js @@ -0,0 +1 @@ + diff --git a/packages/lesspass-pure/src/components/Avatar.vue b/packages/lesspass-pure/src/components/Avatar.vue index 3943231..61836a7 100644 --- a/packages/lesspass-pure/src/components/Avatar.vue +++ b/packages/lesspass-pure/src/components/Avatar.vue @@ -68,4 +68,3 @@ export default { } }; - diff --git a/packages/lesspass-pure/src/components/PasswordProfile.vue b/packages/lesspass-pure/src/components/PasswordProfile.vue index 567160d..5c6e0b9 100644 --- a/packages/lesspass-pure/src/components/PasswordProfile.vue +++ b/packages/lesspass-pure/src/components/PasswordProfile.vue @@ -62,4 +62,3 @@ export default { } }; - diff --git a/packages/lesspass-pure/src/i18n/de.json b/packages/lesspass-pure/src/i18n/de.json index c8fc5b2..e698857 100644 --- a/packages/lesspass-pure/src/i18n/de.json +++ b/packages/lesspass-pure/src/i18n/de.json @@ -54,4 +54,4 @@ "UpdateYourSearch": "Bitte erweitern Sie Ihre Suche.", "WelcomeRegister": "Willkommen {email}, danke für die Anmeldung.", "resetPasswordSuccess": "Wenn die E-Mail-Adresse {email} mit einem LessPass-Konto verknüpft ist, erhalten Sie in Kürze eine E-Mail von LessPass mit Anweisungen zum Zurücksetzen Ihres Passworts." -} \ No newline at end of file +} diff --git a/packages/lesspass-pure/src/i18n/es.json b/packages/lesspass-pure/src/i18n/es.json index 6a926a6..f96cff2 100644 --- a/packages/lesspass-pure/src/i18n/es.json +++ b/packages/lesspass-pure/src/i18n/es.json @@ -54,4 +54,4 @@ "UpdateYourSearch": "Trate de ampliar su búsqueda.", "WelcomeRegister": "Bienvenido o bienvenida {email}, gracias por registrarse.", "resetPasswordSuccess": "Si la dirección de correo electrónico {email} está asociada a una cuenta LessPass, recibirá un correo electrónico de LessPass con instrucciones sobre cómo restablecer su contraseña." -} \ No newline at end of file +} diff --git a/packages/lesspass-pure/src/i18n/fr.json b/packages/lesspass-pure/src/i18n/fr.json index d26e04e..f2a940b 100644 --- a/packages/lesspass-pure/src/i18n/fr.json +++ b/packages/lesspass-pure/src/i18n/fr.json @@ -54,4 +54,4 @@ "UpdateYourSearch": "Merci de modifier votre recherche.", "WelcomeRegister": "Bienvenue {email}, merci de vous être enregistré.", "resetPasswordSuccess": "Si l'adresse email {email} est associée avec un compte LessPass, vous allez recevoir un email de la part de LessPass avec les instructions pour changer votre mot de passe." -} \ No newline at end of file +} diff --git a/packages/lesspass-pure/src/i18n/pl.json b/packages/lesspass-pure/src/i18n/pl.json index 3fd785f..86d8b79 100644 --- a/packages/lesspass-pure/src/i18n/pl.json +++ b/packages/lesspass-pure/src/i18n/pl.json @@ -54,4 +54,4 @@ "UpdateYourSearch": "Spróbuj bardziej ogólnego zapytania.", "WelcomeRegister": "Witaj, {email}, dziękujemy za rejestrację.", "resetPasswordSuccess": "Jeśli adres {email} jest skojarzony z kontem LessPass, wkrótce otrzymasz wiadomość od LessPass zawierającą instrukcje resetowania hasła." -} \ No newline at end of file +} diff --git a/packages/lesspass-pure/src/i18n/pt.json b/packages/lesspass-pure/src/i18n/pt.json index 52436c3..85f0c60 100644 --- a/packages/lesspass-pure/src/i18n/pt.json +++ b/packages/lesspass-pure/src/i18n/pt.json @@ -54,4 +54,4 @@ "UpdateYourSearch": "Por favor tente ampliar sua busca.", "WelcomeRegister": "Bem vindo {email}, obrigado por se registrar.", "resetPasswordSuccess": "Se o seu endereço de email {email} estiver associado com uma conta LessPass, você receberá logo um email do LessPass com instruções de como resetar a sua senha." -} \ No newline at end of file +} diff --git a/packages/lesspass-pure/src/i18n/ru.json b/packages/lesspass-pure/src/i18n/ru.json index 6b66bd7..a39f6b9 100644 --- a/packages/lesspass-pure/src/i18n/ru.json +++ b/packages/lesspass-pure/src/i18n/ru.json @@ -54,4 +54,4 @@ "UpdateYourSearch": "Пожалуйста, попробуйте расширить условия поиска.", "WelcomeRegister": "Добро пожаловать, {email}. Спасибо за регистрацию!", "resetPasswordSuccess": "Если адрес электронной почты {email} связан с учетной записью LessPass, вы получите электронное письмо от LessPass с инструкциями по восстановлению пароля." -} \ No newline at end of file +} diff --git a/packages/lesspass-pure/src/i18n/zh-CN.json b/packages/lesspass-pure/src/i18n/zh-CN.json index 8580b1c..253f310 100644 --- a/packages/lesspass-pure/src/i18n/zh-CN.json +++ b/packages/lesspass-pure/src/i18n/zh-CN.json @@ -54,4 +54,4 @@ "UpdateYourSearch": "请尝试放宽您的搜索条件。", "WelcomeRegister": "你好 {email},欢迎您的注册。", "resetPasswordSuccess": "如果电子邮件地址 {email} 与一个 LessPass 账户相关联,您将很快收到 LessPass 的电子邮件,里面提供有重置密码的操作说明。" -} \ No newline at end of file +} diff --git a/packages/lesspass-site/.gitignore b/packages/lesspass-site/.gitignore index c795b05..378eac2 100644 --- a/packages/lesspass-site/.gitignore +++ b/packages/lesspass-site/.gitignore @@ -1 +1 @@ -build \ No newline at end of file +build diff --git a/packages/lesspass-site/Dockerfile b/packages/lesspass-site/Dockerfile index 6afa321..11c9618 100644 --- a/packages/lesspass-site/Dockerfile +++ b/packages/lesspass-site/Dockerfile @@ -10,4 +10,4 @@ FROM nginx:alpine COPY --from=builder /opt/frontend/build /usr/share/nginx/html COPY nginx.conf /etc/nginx/conf.d/default.conf EXPOSE 80 -CMD ["nginx", "-g", "daemon off;"] \ No newline at end of file +CMD ["nginx", "-g", "daemon off;"] diff --git a/packages/lesspass-site/images/cover.original.txt b/packages/lesspass-site/images/cover.original.txt index ca3adec..35df5e6 100644 --- a/packages/lesspass-site/images/cover.original.txt +++ b/packages/lesspass-site/images/cover.original.txt @@ -1 +1 @@ -https://www.pexels.com/photo/grey-and-white-snow-covered-mountains-and-white-cloud-bank-65125/ \ No newline at end of file +https://www.pexels.com/photo/grey-and-white-snow-covered-mountains-and-white-cloud-bank-65125/ diff --git a/packages/lesspass-site/nginx.conf b/packages/lesspass-site/nginx.conf index cdf6417..9206374 100644 --- a/packages/lesspass-site/nginx.conf +++ b/packages/lesspass-site/nginx.conf @@ -44,4 +44,3 @@ server { # deny all; #} } - diff --git a/packages/lesspass-web-extension/.gitignore b/packages/lesspass-web-extension/.gitignore index d163863..567609b 100644 --- a/packages/lesspass-web-extension/.gitignore +++ b/packages/lesspass-web-extension/.gitignore @@ -1 +1 @@ -build/ \ No newline at end of file +build/ diff --git a/packages/lesspass-web-extension/extension/icons/loading.svg b/packages/lesspass-web-extension/extension/icons/loading.svg index 87103f9..d5d7a4e 100644 --- a/packages/lesspass-web-extension/extension/icons/loading.svg +++ b/packages/lesspass-web-extension/extension/icons/loading.svg @@ -42,4 +42,4 @@ - \ No newline at end of file + diff --git a/sandbox/.gitignore b/sandbox/.gitignore index 7be3e39..27b075a 100644 --- a/sandbox/.gitignore +++ b/sandbox/.gitignore @@ -1,2 +1,2 @@ lesspass-site/ -lesspass-web-component/ \ No newline at end of file +lesspass-web-component/ diff --git a/sandbox/copy-paste-async.html b/sandbox/copy-paste-async.html index 9fd4512..2ca7ab0 100644 --- a/sandbox/copy-paste-async.html +++ b/sandbox/copy-paste-async.html @@ -33,5 +33,3 @@ }); } - -