mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-22 18:00:18 +01:00
04ae92a2c0
We've been using the `eslint-plugin-json` plugin for some time, but we haven't been visiting `.json` files in the lint script. The lint script has now been updated to incude `.json` files, which means any invalid JSON will result in a lint error. Unfortunately this JSON plugin doesn't seem to apply the other eslint rules (such as `key-spacing`) to the JSON files. I wasn't able to find a way to get that to work. Instead I manually auto-formatted each of the locale `message.json` files, which fixed many whitespace inconsistencies. The `states.json` file was deleted completely, as it appears to be unused. It wasn't a valid JSON file anyway, it was JavaScript. It looks like a `states.js` file is automatically generated, but an old copy was accidentally saved as `states.json` and included in the repo. Many duplicate key errors were found and fixed in the `development/states/` JSON files. `package-lock.json` was added to `.eslintignore` because it was very slow to lint, and linting it doesn't provide much value.
42 lines
1013 B
JSON
42 lines
1013 B
JSON
{
|
|
"metamask": {
|
|
"isInitialized": true,
|
|
"isUnlocked": false,
|
|
"currentDomain": "example.com",
|
|
"rpcTarget": "https://rawtestrpc.metamask.io/",
|
|
"identities": {},
|
|
"unconfTxs": {},
|
|
"currentCurrency": "USD",
|
|
"conversionRate": 11.4379398,
|
|
"conversionDate": 1473358355,
|
|
"accounts": {},
|
|
"transactions": [],
|
|
"network": "1473186153102",
|
|
"seedWords": null,
|
|
"unconfMsgs": {},
|
|
"messages": [],
|
|
"shapeShiftTxList": [],
|
|
"provider": {
|
|
"type": "rpc",
|
|
"rpcTarget": "http://localhost:8545"
|
|
},
|
|
"selectedAddress": "0xfdea65c8e26263f6d9a1b5de9555d2931a33b825"
|
|
},
|
|
"appState": {
|
|
"menuOpen": false,
|
|
"currentView": {
|
|
"name": "accountDetail",
|
|
"detailView": null,
|
|
"context": "0xfdea65c8e26263f6d9a1b5de9555d2931a33b825"
|
|
},
|
|
"accountDetail": {
|
|
"subview": "transactions"
|
|
},
|
|
"currentDomain": "127.0.0.1:9966",
|
|
"transForward": true,
|
|
"isLoading": false,
|
|
"warning": null
|
|
},
|
|
"identities": {}
|
|
}
|