Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Maciej Kowalczyk
push
Commits
e768dd30
Commit
e768dd30
authored
10 years ago
by
Morten Henriksen
Browse files
Options
Download
Email Patches
Plain Diff
mbr update versions and fix warnings
parent
1cfe0e6b
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
.editorconfig
+18
-0
.editorconfig
.jshintrc
+97
-0
.jshintrc
LICENSE.md
+20
-0
LICENSE.md
package.js
+2
-2
package.js
with
137 additions
and
2 deletions
+137
-2
.editorconfig
0 → 100644
+
18
-
0
View file @
e768dd30
# .editorconfig
# Meteor adapted EditorConfig, http://EditorConfig.org
# By RaiX 2013
root = true
[*.js]
end_of_line = lf
insert_final_newline = true
indent_style = space
indent_size = 2
trim_trailing_whitespace = true
charset = utf-8
max_line_length = 80
indent_brace_style = 1TBS
spaces_around_operators = true
quote_type = auto
# curly_bracket_next_line = true
This diff is collapsed.
Click to expand it.
.jshintrc
0 → 100644
+
97
-
0
View file @
e768dd30
{
// JSHint Meteor Configuration File
// Match the Meteor Style Guide
//
// By @raix with contributions from @aldeed and @awatson1978
// Source https://github.com/raix/Meteor-jshintrc
//
// See http://jshint.com/docs/ for more details
"maxerr": 50,
"bitwise": true,
"camelcase": true,
"curly": true,
"eqeqeq": true,
"forin": true,
"immed": false,
"indent": 2,
"latedef": false,
"newcap": false,
"noarg": true,
"noempty": true,
"nonew": false,
"plusplus": false,
"quotmark": false,
"undef": true,
"unused": true,
"strict": true,
"trailing": true,
"maxparams": false,
"maxdepth": false,
"maxstatements": false,
"maxcomplexity": false,
"maxlen": 80,
"asi": false,
"boss": false,
"debug": false,
"eqnull": false,
"es5": false,
"esnext": false,
"moz": false,
"evil": false,
"expr": false,
"funcscope": false,
"globalstrict": true,
"iterator": false,
"lastsemic": false,
"laxbreak": false,
"laxcomma": false,
"loopfunc": false,
"multistr": false,
"proto": false,
"scripturl": false,
"smarttabs": false,
"shadow": false,
"sub": false,
"supernew": false,
"validthis": false,
"browser": true,
"couch": false,
"devel": true,
"dojo": false,
"jquery": false,
"mootools": false,
"node": false,
"nonstandard": false,
"prototypejs": false,
"rhino": false,
"worker": false,
"wsh": false,
"yui": false,
"nomen": false,
"onevar": false,
"passfail": false,
"white": false,
"predef": [
"Meteor",
"Accounts",
"Session",
"Template",
"check",
"Match",
"Deps",
"EJSON",
"Email",
"Package",
"Tinytest",
"Npm",
"Assets",
"Packages",
"process",
"LocalCollection",
"_",
"Random",
"HTTP",
"_methodHTTP"
]
}
\ No newline at end of file
This diff is collapsed.
Click to expand it.
LICENSE.md
0 → 100644
+
20
-
0
View file @
e768dd30
The MIT License (MIT)
Copyright (c) 2013-2014
[
@raix
](
https://github.com/raix
)
, aka Morten N.O. Nørgaard Henriksen, mh@gi-software.com
Permission is hereby granted, free of charge, to any person obtaining a copy of
this software and associated documentation files (the "Software"), to deal in
the Software without restriction, including without limitation the rights to
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
the Software, and to permit persons to whom the Software is furnished to do so,
subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
This diff is collapsed.
Click to expand it.
package.js
+
2
-
2
View file @
e768dd30
...
...
@@ -2,7 +2,7 @@ Package.describe({
name
:
'
raix:push
'
,
version
:
'
2.0.3
'
,
summary
:
'
Push notifications
'
,
git
:
'
https://github.com/raix/push
'
git
:
'
https://github.com/raix/push
.git
'
});
// Server-side push deps
...
...
@@ -26,7 +26,7 @@ Package.onUse(function(api) {
'
random
'
// The push it is created with Random.id()
],
'
client
'
);
api
.
use
(
'
raix:eventemitter@0.
0.2
'
,
[
'
client
'
,
'
server
'
]);
api
.
use
(
'
raix:eventemitter@0.
1.0
'
,
[
'
client
'
,
'
server
'
]);
api
.
use
(
'
mongo
'
,
'
server
'
);
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment
Menu
Projects
Groups
Snippets
Help