diff --git a/.editorconfig b/.editorconfig index 5d1263484..a1c0c0065 100644 --- a/.editorconfig +++ b/.editorconfig @@ -1,4 +1,5 @@ -# editorconfig.org +# EditorConfig is awesome: https://EditorConfig.org + root = true [*] @@ -8,6 +9,3 @@ end_of_line = lf charset = utf-8 trim_trailing_whitespace = true insert_final_newline = true - -[*.md] -trim_trailing_whitespace = false diff --git a/.env.example b/.env.example index ead263bd8..bc8215947 100644 --- a/.env.example +++ b/.env.example @@ -1,10 +1,10 @@ -# Google Analytics +# Google Analytics ID GA_ID=UA-XXXXXXXX-X -# Google Tag Manager +# Google Tag Manager ID GTM_ID=GTM-XXXXXXX -# Firebase +# Firebase config API_KEY=api-key AUTH_DOMAIN=project-id.firebaseapp.com DATABASE_URL=https://project-id.firebaseio.com diff --git a/.prettierignore b/.prettierignore index 555d101a9..906185b48 100644 --- a/.prettierignore +++ b/.prettierignore @@ -4,4 +4,5 @@ .hoppscotch .vscode package-lock.json -node_modules \ No newline at end of file +node_modules +dist \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index f96eb3bce..456826d8a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## [v1.10.0](https://github.com/hoppscotch/hoppscotch/tree/v1.10.0) (2020-04-10) + +[Full Changelog](https://github.com/hoppscotch/hoppscotch/compare/v1.9.9...v1.10.0) + ## [v1.9.9](https://github.com/liyasthomas/postwoman/tree/v1.9.9) (2020-07-30) [Full Changelog](https://github.com/liyasthomas/postwoman/compare/v1.9.7...v1.9.9) diff --git a/firestore.rules b/firestore.rules index ce0a1b949..6df6bb6d9 100644 --- a/firestore.rules +++ b/firestore.rules @@ -3,7 +3,7 @@ service cloud.firestore { match /{document=**} { allow read, write: if request.auth.uid != null; } - // Make sure the uid of the requesting user matches name of the user + // Make sure the uid of the requesting user matches the name of the user // document. The wildcard expression {userId} makes the userId variable // available in rules. match /users/{userId} {