Skip to content

Commit

Permalink
Merge pull request #3 from expanse-org/develop
Browse files Browse the repository at this point in the history
merge Develop
  • Loading branch information
chrisfranko committed Mar 30, 2017
2 parents c503deb + c48376a commit 8ddfb74
Show file tree
Hide file tree
Showing 236 changed files with 34,948 additions and 7,797 deletions.
23 changes: 23 additions & 0 deletions .codeclimate.yml
@@ -0,0 +1,23 @@
engines:
duplication:
enabled: true
config:
languages:
javascript:
mass_threshold: 40 ## default threshold
eslint:
enabled: true
channel: "eslint-3" ## required for airbnb-base config
checks:
complexity:
enabled: true
csslint:
enabled: true

ratings: ## enables GPA rating
paths:
- "**.css"
- "**.js"

exclude_paths:
- "tests/"
17 changes: 17 additions & 0 deletions .editorconfig
@@ -0,0 +1,17 @@
root = true

[*]
indent_style = space
indent_size = 4
end_of_line = lf
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true

[*.{yml}]
indent_style = space
indent_size = 2
end_of_line = lf
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true
2 changes: 2 additions & 0 deletions .eslintignore
@@ -0,0 +1,2 @@
node_modules
interface/client/lib/signatures.js
40 changes: 40 additions & 0 deletions .eslintrc.yml
@@ -0,0 +1,40 @@
extends: airbnb-base

plugins:
- import

settings:
import/core-modules: ## don't lint for these missing packages in package.json
- electron ## 'electron' is only needed as devDependency / global installation

rules:
# "off" or 0 - turn the rule off
# "warn" or 1 - turn the rule on as a warning (doesn’t affect exit code)
# "error" or 2 - turn the rule on as an error (exit code is 1 when triggered)
indent:
- error
- 4 ## number of spaces
no-console: off ## allowed for chrome dev-console
padded-blocks: off
arrow-body-style: off
prefer-arrow-callback: off
no-underscore-dangle: off
comma-dangle:
- error
- only-multiline ## no comma after last item if one line, though allow comma if multiline
import/no-extraneous-dependencies: ## checks if required modules are missing in packages.json
- error
- devDependencies: ## declares files, whose imports belong to devDependencies
- "**/scripts/build-dist.js"
- "**/tests/_base.js"
- "**/*.test.js"

globals: # don't warn about missing declarations
i18n: true
mist: true
beforeEach: true
LocalStore: true
web3: true
Tabs: true
Tracker: true
_: true
27 changes: 15 additions & 12 deletions .github/ISSUE_TEMPLATE.md
@@ -1,16 +1,19 @@
Node type: geth/eth
OS: linux/windows/osx
Network type: main/test
Mist version: 0.0.0
#### System information
``````
Version: `0.0.0`
OS & Version: windows/linux/osx
Node type: `exp/gexp(default)`
``````

Please check the already existing issues, before creating an issue. We would like to keep duplicates at a minumim.
Read the https://github.com/ethereum/wiki/wiki/Mist-Troubleshooting-Guide first, where we summarized a few of the known issues.
#### Please check the **already existing** issues to keep duplicates at a minimum.
Furthermore several **work-arounds** have been collected in the [Mist-Troubleshooting-Guide](https://github.com/ethereum/wiki/wiki/Mist-Troubleshooting-Guide).

Add the following to issue, when possible:
If possible add the following to your report:

- Screenshots
- Check the console, of Mist (CTRL/CMD + ALT + i) and take a screenshot.
- Log files (as ZIP archive)
- osx: ~/Library/Application Support/Mist/node.log (Open Home folder > Show View Options > Show Library Folder)
- windows: %APPDATA%/Roaming/Mist/node.log
- linux: ~/.config/Mist/node.log

- Check the console, of Mist (`CTRL/CMD + ALT + i`) and take a screenshot

- Log files
- go to `menu -> accounts -> backup -> application data`
- zip and upload `node.log` and all other `node.log.X` files
11 changes: 10 additions & 1 deletion .gitignore
@@ -1,5 +1,14 @@
.DS_Store
node_modules/
packages/
interface_build/
interface/public/i18n/
interface/.meteor/dev_bundle
interface/.meteor/public/
dist_wallet/
dist_mist/
dist_mist/
nodes/gexp/
config.json
mist.log
npm-debug.log
yarn.lock
1 change: 1 addition & 0 deletions .idea/.name

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

14 changes: 14 additions & 0 deletions .idea/misc.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 8 additions & 0 deletions .idea/mist.iml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 8 additions & 0 deletions .idea/modules.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions .idea/vcs.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 8ddfb74

Please sign in to comment.