Skip to content

Commit

Permalink
[FEATURE] Add possibility to associate label with address.
Browse files Browse the repository at this point in the history
  • Loading branch information
e00dan committed May 24, 2018
1 parent 00ad224 commit 8e15138
Show file tree
Hide file tree
Showing 27 changed files with 9,756 additions and 889 deletions.
2 changes: 2 additions & 0 deletions .eslintignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
node_modules/
js/app/lib
28 changes: 28 additions & 0 deletions .eslintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
{
"extends": ["eslint:recommended"],
"parser": "babel-eslint",
"parserOptions": {
"ecmaFeatures": {
"jsx": true,
"modules": true
},
"experimentalDecorators": true
},
"env": {
"browser": true,
"node": true,
"es6": true,
"webextensions": true
},
"rules": {
"linebreak-style": 0,
"object-curly-spacing": ["warn", "always"],
"no-trailing-spaces": "warn",
"keyword-spacing": "warn",
"no-extra-semi": "error",
"semi": ["error", "always"],
"no-console": "off",
"no-unused-vars": "warn",
"no-undef": "warn"
}
}
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
.idea/
*.iml
node_modules
12 changes: 12 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
dist: trusty
sudo: required
group: beta
language: node_js
node_js:
- "10"
cache:
directories:
- node_modules
install: npm install
script:
- npm run lint
Loading

0 comments on commit 8e15138

Please sign in to comment.