From 8a3a759db512c1c958e92f5f4dee83b3ee780ce2 Mon Sep 17 00:00:00 2001 From: Dominik Ferber Date: Mon, 5 Oct 2015 00:07:02 +0200 Subject: [PATCH] docs(README): Add pubsub --- README.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 6b47e2ebed..43560fc2d6 100755 --- a/README.md +++ b/README.md @@ -45,10 +45,11 @@ Finally, enable all of the rules that you would like to use. ```json { "rules": { - "meteor/no-session": 1, + "meteor/no-session": 2, "meteor/no-blaze-lifecycle-assignment": 2, "meteor/no-blaze-zero-timeout": 2, - "meteor/audit-argument-checks": 2 + "meteor/audit-argument-checks": 2, + "meteor/pubsub": 2 } } ``` @@ -61,6 +62,7 @@ For a more thorough introduction, read [setting up a Meteor project](docs/SETUP_ * [no-blaze-lifecycle-assignment](docs/rules/no-blaze-lifecycle-assignment.md): Prevent deprecated template lifecycle callback assignments * [no-zero-timeout](docs/rules/no-zero-timeout.md): Prevent usage of Meteor.setTimeout with zero delay * [audit-argument-checks](docs/rules/audit-argument-checks.md): Enforce check on all arguments passed to methods and publish functions +* [pubsub](docs/rules/pubsub.md): Prevent misusage of Publish and Subscribe ## To Do