Skip to content

Commit c48376a

Browse files
authored
Merge pull request #2 from expanse-org/dev-chris
merge rebase
2 parents 545f27b + 7d8b37d commit c48376a

File tree

296 files changed

+44183
-7258
lines changed

Some content is hidden

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

296 files changed

+44183
-7258
lines changed

.codeclimate.yml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
engines:
2+
duplication:
3+
enabled: true
4+
config:
5+
languages:
6+
javascript:
7+
mass_threshold: 40 ## default threshold
8+
eslint:
9+
enabled: true
10+
channel: "eslint-3" ## required for airbnb-base config
11+
checks:
12+
complexity:
13+
enabled: true
14+
csslint:
15+
enabled: true
16+
17+
ratings: ## enables GPA rating
18+
paths:
19+
- "**.css"
20+
- "**.js"
21+
22+
exclude_paths:
23+
- "tests/"

.editorconfig

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
root = true
2+
3+
[*]
4+
indent_style = space
5+
indent_size = 4
6+
end_of_line = lf
7+
charset = utf-8
8+
trim_trailing_whitespace = true
9+
insert_final_newline = true
10+
11+
[*.{yml}]
12+
indent_style = space
13+
indent_size = 2
14+
end_of_line = lf
15+
charset = utf-8
16+
trim_trailing_whitespace = true
17+
insert_final_newline = true

.eslintignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
node_modules
2+
interface/client/lib/signatures.js

.eslintrc.yml

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
extends: airbnb-base
2+
3+
plugins:
4+
- import
5+
6+
settings:
7+
import/core-modules: ## don't lint for these missing packages in package.json
8+
- electron ## 'electron' is only needed as devDependency / global installation
9+
10+
rules:
11+
# "off" or 0 - turn the rule off
12+
# "warn" or 1 - turn the rule on as a warning (doesn’t affect exit code)
13+
# "error" or 2 - turn the rule on as an error (exit code is 1 when triggered)
14+
indent:
15+
- error
16+
- 4 ## number of spaces
17+
no-console: off ## allowed for chrome dev-console
18+
padded-blocks: off
19+
arrow-body-style: off
20+
prefer-arrow-callback: off
21+
no-underscore-dangle: off
22+
comma-dangle:
23+
- error
24+
- only-multiline ## no comma after last item if one line, though allow comma if multiline
25+
import/no-extraneous-dependencies: ## checks if required modules are missing in packages.json
26+
- error
27+
- devDependencies: ## declares files, whose imports belong to devDependencies
28+
- "**/scripts/build-dist.js"
29+
- "**/tests/_base.js"
30+
- "**/*.test.js"
31+
32+
globals: # don't warn about missing declarations
33+
i18n: true
34+
mist: true
35+
beforeEach: true
36+
LocalStore: true
37+
web3: true
38+
Tabs: true
39+
Tracker: true
40+
_: true

.github/ISSUE_TEMPLATE.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
#### System information
2+
``````
3+
Version: `0.0.0`
4+
OS & Version: windows/linux/osx
5+
Node type: `exp/gexp(default)`
6+
``````
7+
8+
#### Please check the **already existing** issues to keep duplicates at a minimum.
9+
Furthermore several **work-arounds** have been collected in the [Mist-Troubleshooting-Guide](https://github.com/ethereum/wiki/wiki/Mist-Troubleshooting-Guide).
10+
11+
If possible add the following to your report:
12+
13+
- Screenshots
14+
15+
- Check the console, of Mist (`CTRL/CMD + ALT + i`) and take a screenshot
16+
17+
- Log files
18+
- go to `menu -> accounts -> backup -> application data`
19+
- zip and upload `node.log` and all other `node.log.X` files

.gitignore

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
1+
.DS_Store
12
node_modules/
23
packages/
34
interface_build/
5+
interface/public/i18n/
6+
interface/.meteor/dev_bundle
7+
interface/.meteor/public/
48
dist_wallet/
5-
dist_mist/
9+
dist_mist/
10+
nodes/gexp/
11+
config.json
12+
mist.log
13+
npm-debug.log
14+
yarn.lock

.idea/.name

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/misc.xml

Lines changed: 14 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/mist.iml

Lines changed: 8 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/modules.xml

Lines changed: 8 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)