Skip to content
This repository was archived by the owner on Sep 5, 2020. It is now read-only.

Commit ad2c224

Browse files
committed
Merge branch 'develop' of github.com:ethereum/mist into circle-ci
2 parents 826bcee + 66c0b12 commit ad2c224

File tree

190 files changed

+29070
-36853
lines changed

Some content is hidden

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

190 files changed

+29070
-36853
lines changed

.babelrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
"presets": ["es2016-node5"]
2+
"presets": ["react", "es2016-node5"]
33
}

.codeclimate.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,17 +4,17 @@ engines:
44
config:
55
languages:
66
javascript:
7-
mass_threshold: 40 ## default threshold
7+
mass_threshold: 40 # default threshold
88
eslint:
99
enabled: true
10-
channel: "eslint-3" ## required for airbnb-base config
10+
channel: "eslint-4"
1111
checks:
1212
complexity:
1313
enabled: true
1414
csslint:
1515
enabled: true
1616

17-
ratings: ## enables GPA rating
17+
ratings: # enables GPA rating
1818
paths:
1919
- "**.css"
2020
- "**.js"

.editorconfig

Lines changed: 0 additions & 17 deletions
This file was deleted.

.eslintignore

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

.eslintrc.json

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
{
2+
"env": { "es6": true },
3+
"extends": [
4+
"plugin:prettier/recommended",
5+
"eslint:recommended",
6+
"plugin:react/recommended"
7+
],
8+
"globals": {
9+
"i18n": true,
10+
"mist": true,
11+
"beforeEach": true,
12+
"LocalStore": true,
13+
"web3": true,
14+
"Tabs": true,
15+
"Tracker": true,
16+
"_": true,
17+
"window": true,
18+
"location": true,
19+
"document": true,
20+
"Promise": true,
21+
"require": true,
22+
"global": true,
23+
"store": true,
24+
"exports": true,
25+
"module": true,
26+
"console": true,
27+
"process": true
28+
}
29+
}

.eslintrc.yml

Lines changed: 0 additions & 47 deletions
This file was deleted.

.github/ISSUE_TEMPLATE.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
- [ ] I've asked for help in the [Mist Gitter](http://gitter.im/ethereum/mist) before filing this issue.
22

3-
43
<!-- Please fill in these information below: -->
4+
55
```
66
Version: `0.0.0`
77
OS & Version: windows/linux/osx
8-
Node version: `geth 0.0.0`
8+
Node version: `geth 0.0.0`
99
Number of blocks synchronized: 0
1010
```
1111

.github/config.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
maintainers:
2+
- alexvandesande
23
- evertonfraga
3-
- ryanio
44
- marcgarreau
5-
- alexvandesande
65
- philipplgh
6+
- ryanio

.github/no-response.yml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# Configuration for probot-no-response - https://github.com/probot/no-response
2+
3+
# Number of days of inactivity before an Issue is closed for lack of response
4+
daysUntilClose: 7
5+
# Label requiring a response
6+
responseRequiredLabel: "Status: Information needed"
7+
# Comment to post when closing an Issue for lack of response. Set to `false` to disable
8+
closeComment: >
9+
This issue has been automatically closed because there has been no response
10+
to our request for more information from the original author. With only the
11+
information that is currently in the issue, we don't have enough information
12+
to take action. Please reach out if you have or find the answers we need so
13+
that we can investigate further.

.gitignore

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,6 @@ nodes/geth/
1111
config.json
1212
mist.log
1313
npm-debug.log
14-
/yarn.lock
14+
yarn-debug.log
15+
yarn-error.log
16+
wallet

0 commit comments

Comments
 (0)