Files
meteor/docs/rules/no-session.md
Dominik Ferber baa4b0a223 init
2015-09-24 19:03:14 +02:00

811 B

Prevent usage of Session (no-session)

This rule prevents any usage of Session. Session variables live in a global namespace, which is bad practice. reactive-dict should be used instead.

Rule Details

This rule enforces a style without Session.

The following patterns are considered warnings:


Session.set('foo')
Session.get('foo')
Session.all()
Session.clear()

The following patterns are not warnings:


Session = true
console.log(Session)

When Not To Use It

If you are working on a project using few globals then you can disable this rule.

Further Reading