-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc
71 lines (63 loc) · 1.8 KB
/
.eslintrc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
// Following AirBnB's lead
"extends": "airbnb",
// To configure global variables inside of a configuration file, use the
// globals key and indicate the global variables you want to use. Set each
// global variable name equal to true to allow the variable to be overwritten
// or false to disallow overwriting.
globals: {
// Meteor core
"Meteor": false,
"DDP": false,
"Mongo": false, //Meteor.Collection renamed to Mongo.Collection
"Session": false,
"Accounts": false,
"Template": false,
"Blaze": false, //UI is being renamed Blaze
"UI": false,
"Match": false,
"check": false,
"Tracker": false, //Deps renamed to Tracker
"Deps": false,
"ReactiveVar": false,
"EJSON": false,
"HTTP": false,
"Email": false,
"Assets": false,
"Handlebars": false,
"Package": false,
"App": false, //mobile-config.js
"Future": false,
// Meteor internals
"DDPServer": false,
"global": false,
"Log": false,
"MongoInternals": false,
"process": false,
"WebApp": false,
"WebAppInternals": false,
// globals useful when creating Meteor packages
"Npm": false,
"Tinytest": false,
// common Meteor packages
"Random": false,
"lodash": false,
"_": true, // Set to true to allow redefining to Lodash.
"$": false, // jQuery
"Router": false, // iron-router
"FlowRouter": false, // flow-router
"React": false, // React
"ReactLayout": false, // ReactLayout
"ReactRouter": false,
"ReactDOM": false,
"ReactMeteorData": false,
// App packages
"SimpleSchema": false,
"Roles": false,
"moment": false,
"accounting": false,
// Collections
// Global function for development
"DEV": true,
}
}