mirror of
https://github.com/meteor/meteor.git
synced 2026-05-02 03:01:46 -04:00
811 B
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.