Skip to content

Commit 5d444b8

Browse files
committed
MERGE 0.12.4
2 parents 0207d27 + 8369c35 commit 5d444b8

File tree

166 files changed

+12068
-3668
lines changed

Some content is hidden

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

166 files changed

+12068
-3668
lines changed

.eslintignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
node_modules

.eslintrc

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
{
2+
"parser": "babel-eslint",
3+
"extends": "airbnb",
4+
"plugins": [
5+
"prefer-object-spread"
6+
],
7+
"rules": {
8+
"prefer-object-spread/prefer-object-spread": 2,
9+
"react/jsx-filename-extension": 0,
10+
"react/prefer-stateless-function": 0,
11+
"react/sort-comp": 0,
12+
"no-use-before-define": 0,
13+
"no-underscore-dangle": 0,
14+
"import/no-unresolved": [2, { "ignore": ["react"] }]
15+
}
16+
}

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,10 +25,13 @@ project.xcworkspace
2525
# Android/IJ
2626
#
2727
.idea
28+
*.iml
2829
.gradle
2930
local.properties
3031

3132
# node.js
3233
#
3334
node_modules/
3435
npm-debug.log
36+
Pods/
37+
AirMapsExplorer.xcworkspace/

.travis.yml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
language: node_js
2+
3+
node_js:
4+
- "6"
5+
6+
cache:
7+
directories:
8+
- node_modules
9+
- example/node_modules
10+
11+
script: npm run lint

0 commit comments

Comments
 (0)