Liyas Thomas před 4 roky
rodič
revize
fc05a4bb78
5 změnil soubory, kde provedl 12 přidání a 9 odebrání
  1. 2 4
      .editorconfig
  2. 3 3
      .env.example
  3. 2 1
      .prettierignore
  4. 4 0
      CHANGELOG.md
  5. 1 1
      firestore.rules

+ 2 - 4
.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

+ 3 - 3
.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

+ 2 - 1
.prettierignore

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

+ 4 - 0
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)

+ 1 - 1
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} {