I've been unable to find anything in the docs that say whether you can add comments, i.e.
rules_version = '2';
service cloud.firestore {
match /databases/{database}/documents {
match /{document=**} {
// Testing the removal of this line:
// allow read: if true;
allow read: if false;
allow write: if request.auth.uid != null;
}
}
}
Is there any info online about the rules syntax? What language is it written in?