Skip to content

Commit b6b10cc

Browse files
Bartosz Wojtkowiakwojtkowiak
Bartosz Wojtkowiak
authored andcommitted
initial project upload
0 parents  commit b6b10cc

File tree

281 files changed

+22801
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

281 files changed

+22801
-0
lines changed

.babelrc

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
{
2+
"presets": ["es2015", "stage-1"],
3+
"sourceMaps": true,
4+
"plugins": [
5+
"transform-runtime"
6+
],
7+
"env": {
8+
"test": {
9+
"plugins": ["istanbul"]
10+
}
11+
}
12+
}

.codeclimate.yml

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
---
2+
engines:
3+
duplication:
4+
enabled: true
5+
config:
6+
languages:
7+
- javascript
8+
eslint:
9+
enabled: true
10+
channel: "eslint-3"
11+
fixme:
12+
enabled: true
13+
ratings:
14+
paths:
15+
- "**.js"
16+
exclude_paths: []

.coveralls.yml

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
repo_token: w5scQntQqtAqbRP36Hh7sooqIyqOlbiQm

.editorconfig

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
# EditorConfig helps developers define and maintain consistent
2+
# coding styles between different editors and IDEs
3+
# editorconfig.org
4+
5+
root = true
6+
7+
8+
[*]
9+
10+
# Change these settings to your own preference
11+
indent_style = space
12+
indent_size = 4
13+
14+
# We recommend you to keep these unchanged
15+
end_of_line = lf
16+
charset = utf-8
17+
trim_trailing_whitespace = true
18+
insert_final_newline = true
19+
20+
[*.md]
21+
trim_trailing_whitespace = false

.eslintignore

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
**/*{.,-}min.js

.eslintrc

+62
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,62 @@
1+
{
2+
"extends": "airbnb-base",
3+
"env": {
4+
"es6": true,
5+
"browser": true,
6+
"node": true,
7+
"meteor": true,
8+
"mocha": true
9+
},
10+
"globals": {
11+
"Meteor": true,
12+
"WebAppLocalServer": true,
13+
"Desktop": true,
14+
"Profile": true,
15+
"__METEOR_DESKTOP_BUNDLER": true
16+
},
17+
"parserOptions": {
18+
"ecmaVersion": 2017,
19+
"sourceType": "module"
20+
},
21+
"settings": {
22+
"import/core-modules": [
23+
"winston",
24+
"original-fs",
25+
"electron",
26+
"electron-debug",
27+
"rimraf",
28+
"process",
29+
"devtron"
30+
]
31+
},
32+
"rules": {
33+
"indent": [
34+
2,
35+
4,
36+
{
37+
"SwitchCase": 1
38+
}
39+
],
40+
"comma-dangle": [
41+
0
42+
],
43+
"no-bitwise": [
44+
2,
45+
{
46+
"allow": [
47+
"~"
48+
]
49+
}
50+
],
51+
"import/no-extraneous-dependencies": [
52+
2,
53+
{
54+
"devDependencies": [
55+
"**/*.test.js",
56+
"**/helpers/**/*.js",
57+
"**/skeleton/**/*.js"
58+
]
59+
}
60+
]
61+
}
62+
}

.gitignore

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
node_modules
2+
.idea
3+
dist
4+
tests/_tmp_
5+
.npm
6+
.versions
7+
npm-debug*
8+
coverage
9+
.nyc_output
10+
*.lcov

.npmignore

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
lib
2+
node_modules
3+
.idea
4+
tests
5+
.babelrc
6+
.codeclimate.yml
7+
.coveralls.yml
8+
.editorconfig
9+
.eslintrc
10+
.gitignore
11+
.npmignore
12+
.travis.yml
13+
appveyor.yml
14+
circle.yml
15+
high-level-arch.png
16+
meteor-desktop.png
17+
coverage
18+
.nyc_output
19+
plugins

.travis.yml

+43
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
language: node_js
2+
3+
node_js: "4"
4+
5+
os:
6+
- linux
7+
- osx
8+
matrix:
9+
fast_finish: true
10+
11+
branches:
12+
only:
13+
- master
14+
- beta
15+
16+
addons:
17+
apt:
18+
sources:
19+
- ubuntu-toolchain-r-test
20+
packages:
21+
- g++-4.8
22+
23+
before_install:
24+
- if [[ `npm -v` != 3* ]]; then npm i -g npm@3; fi
25+
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then
26+
export CXX=g++-4.8;1
27+
export DISPLAY=:99.0;
28+
sh -e /etc/init.d/xvfb start;
29+
sleep 8;
30+
fi
31+
32+
after_success:
33+
- npm run coverage
34+
- npm run report-coverage
35+
36+
cache:
37+
directories:
38+
- node_modules
39+
40+
notifications:
41+
email:
42+
on_success: never
43+
on_failure: change

0 commit comments

Comments
 (0)