docs: better copy

This commit is contained in:
Liyas Thomas 2021-04-23 11:38:56 +00:00 committed by GitHub
parent 88b32e317a
commit fc05a4bb78
5 changed files with 12 additions and 9 deletions

View File

@ -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

View File

@ -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

View File

@ -5,3 +5,4 @@
.vscode
package-lock.json
node_modules
dist

View File

@ -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)

View File

@ -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} {