Skip to content

Commit

Permalink
docs: better copy
Browse files Browse the repository at this point in the history
  • Loading branch information
liyasthomas authored Apr 23, 2021
1 parent 88b32e3 commit fc05a4b
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 9 deletions.
6 changes: 2 additions & 4 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
# editorconfig.org
# EditorConfig is awesome: https://EditorConfig.org

root = true

[*]
Expand All @@ -8,6 +9,3 @@ end_of_line = lf
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true

[*.md]
trim_trailing_whitespace = false
6 changes: 3 additions & 3 deletions .env.example
Original file line number Diff line number Diff line change
@@ -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
Expand Down
3 changes: 2 additions & 1 deletion .prettierignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,5 @@
.hoppscotch
.vscode
package-lock.json
node_modules
node_modules
dist
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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)
Expand Down
2 changes: 1 addition & 1 deletion firestore.rules
Original file line number Diff line number Diff line change
Expand Up @@ -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} {
Expand Down

0 comments on commit fc05a4b

Please sign in to comment.