aboutsummaryrefslogtreecommitdiffstats
path: root/development
diff options
context:
space:
mode:
authorbrunobar79 <brunobar79@gmail.com>2018-07-03 06:49:33 +0800
committerbrunobar79 <brunobar79@gmail.com>2018-07-03 06:49:33 +0800
commita8f745f9fe74751b87f500af3857b66d4c80f45e (patch)
treef4f09d2b4227b35a6d2fd996113d36a8aa658ddd /development
parentcc11a623972acf707291d7b42d9dc2f8d7006e20 (diff)
downloadtangerine-wallet-browser-a8f745f9fe74751b87f500af3857b66d4c80f45e.tar
tangerine-wallet-browser-a8f745f9fe74751b87f500af3857b66d4c80f45e.tar.gz
tangerine-wallet-browser-a8f745f9fe74751b87f500af3857b66d4c80f45e.tar.bz2
tangerine-wallet-browser-a8f745f9fe74751b87f500af3857b66d4c80f45e.tar.lz
tangerine-wallet-browser-a8f745f9fe74751b87f500af3857b66d4c80f45e.tar.xz
tangerine-wallet-browser-a8f745f9fe74751b87f500af3857b66d4c80f45e.tar.zst
tangerine-wallet-browser-a8f745f9fe74751b87f500af3857b66d4c80f45e.zip
eslint --fix .
Diffstat (limited to 'development')
-rw-r--r--development/announcer.js2
-rw-r--r--development/backGroundConnectionModifiers.js2
-rw-r--r--development/beefy.js12
-rwxr-xr-xdevelopment/metamaskbot-build-announce.js4
-rw-r--r--development/mock-dev.js8
-rw-r--r--development/mockExtension.js4
-rw-r--r--development/run-version-bump.js2
-rw-r--r--development/selector.js4
-rw-r--r--development/sentry-publish.js8
-rw-r--r--development/sourcemap-validator.js12
-rw-r--r--development/ui-dev.js10
-rw-r--r--development/verify-locale-strings.js19
-rw-r--r--development/version-bump.js6
13 files changed, 46 insertions, 47 deletions
diff --git a/development/announcer.js b/development/announcer.js
index e97ea65b6..ea1bfdd36 100644
--- a/development/announcer.js
+++ b/development/announcer.js
@@ -7,6 +7,6 @@ var changelog = fs.readFileSync(path.join(__dirname, '..', 'CHANGELOG.md')).toSt
var log = changelog.split(version)[1].split('##')[0].trim()
-let msg = `*MetaMask ${version}* now published! It should auto-update soon!\n${log}`
+const msg = `*MetaMask ${version}* now published! It should auto-update soon!\n${log}`
console.log(msg)
diff --git a/development/backGroundConnectionModifiers.js b/development/backGroundConnectionModifiers.js
index ffbe49d4d..665f72898 100644
--- a/development/backGroundConnectionModifiers.js
+++ b/development/backGroundConnectionModifiers.js
@@ -1,5 +1,5 @@
module.exports = {
- "confirm sig requests": {
+ 'confirm sig requests': {
signMessage: (msgData, cb) => {
const stateUpdate = {
unapprovedMsgs: {},
diff --git a/development/beefy.js b/development/beefy.js
index 9eff94320..4aff78521 100644
--- a/development/beefy.js
+++ b/development/beefy.js
@@ -6,12 +6,12 @@ const path = require('path')
const port = 8124
const handler = beefy({
- entries: {'mocker.js': 'bundle.js'}
- , cwd: __dirname
- , live: true
- , open: true
- , quiet: false
- , bundlerFlags: ['-t', 'brfs']
+ entries: {'mocker.js': 'bundle.js'},
+ cwd: __dirname,
+ live: true,
+ open: true,
+ quiet: false,
+ bundlerFlags: ['-t', 'brfs'],
})
diff --git a/development/metamaskbot-build-announce.js b/development/metamaskbot-build-announce.js
index 88614ca5c..96b5572fe 100755
--- a/development/metamaskbot-build-announce.js
+++ b/development/metamaskbot-build-announce.js
@@ -4,7 +4,7 @@ const VERSION = require('../dist/chrome/manifest.json').version
start().catch(console.error)
-async function start() {
+async function start () {
const GITHUB_COMMENT_TOKEN = process.env.GITHUB_COMMENT_TOKEN
const CIRCLE_PULL_REQUEST = process.env.CIRCLE_PULL_REQUEST
@@ -20,7 +20,7 @@ async function start() {
}
const CIRCLE_PR_NUMBER = CIRCLE_PULL_REQUEST.split('/').pop()
- const SHORT_SHA1 = CIRCLE_SHA1.slice(0,7)
+ const SHORT_SHA1 = CIRCLE_SHA1.slice(0, 7)
const BUILD_LINK_BASE = `https://${CIRCLE_BUILD_NUM}-42009758-gh.circle-artifacts.com/0`
const MASCARA = `${BUILD_LINK_BASE}/builds/mascara/home.html`
diff --git a/development/mock-dev.js b/development/mock-dev.js
index f332633d5..8f8d29284 100644
--- a/development/mock-dev.js
+++ b/development/mock-dev.js
@@ -81,14 +81,14 @@ const controller = new MetamaskController({
initState: firstTimeState,
})
global.metamaskController = controller
-global.platform = new ExtensionPlatform
+global.platform = new ExtensionPlatform()
//
// User Interface
//
actions._setBackgroundConnection(controller.getApi())
-actions.update = function(stateName) {
+actions.update = function (stateName) {
selectedView = stateName
updateQueryParams(stateName)
const newState = states[selectedView]
@@ -98,7 +98,7 @@ actions.update = function(stateName) {
}
}
-function modifyBackgroundConnection(backgroundConnectionModifier) {
+function modifyBackgroundConnection (backgroundConnectionModifier) {
const modifiedBackgroundConnection = Object.assign({}, controller.getApi(), backgroundConnectionModifier)
actions._setBackgroundConnection(modifiedBackgroundConnection)
}
@@ -112,7 +112,7 @@ var store = configureStore(firstState)
// start app
startApp()
-function startApp(){
+function startApp () {
const body = document.body
const container = document.createElement('div')
container.id = 'test-container'
diff --git a/development/mockExtension.js b/development/mockExtension.js
index ac03d965c..634d4263a 100644
--- a/development/mockExtension.js
+++ b/development/mockExtension.js
@@ -39,6 +39,6 @@ extension.runtime.reload = noop
extension.tabs.create = noop
extension.runtime.getManifest = function () {
return {
- version: 'development'
+ version: 'development',
}
-} \ No newline at end of file
+}
diff --git a/development/run-version-bump.js b/development/run-version-bump.js
index 98757f58e..32fed1865 100644
--- a/development/run-version-bump.js
+++ b/development/run-version-bump.js
@@ -11,7 +11,7 @@ const bumpType = normalizeType(process.argv[2])
start().catch(console.error)
-async function start() {
+async function start () {
const changeBuffer = await readFile(changelogPath)
const changelog = changeBuffer.toString()
diff --git a/development/selector.js b/development/selector.js
index fd387df15..2673d0fe3 100644
--- a/development/selector.js
+++ b/development/selector.js
@@ -11,7 +11,7 @@ function NewComponent () {
NewComponent.prototype.render = function () {
const props = this.props
- let {
+ const {
states,
selectedKey,
actions,
@@ -28,7 +28,7 @@ NewComponent.prototype.render = function () {
margin: '20px 20px 0px',
},
value: selected,
- onChange:(event) => {
+ onChange: (event) => {
const selectedKey = event.target.value
const backgroundConnectionModifier = backGroundConnectionModifiers[selectedKey]
modifyBackgroundConnection(backgroundConnectionModifier || {})
diff --git a/development/sentry-publish.js b/development/sentry-publish.js
index ab3acabbd..7a6d55115 100644
--- a/development/sentry-publish.js
+++ b/development/sentry-publish.js
@@ -5,7 +5,7 @@ const VERSION = require('../dist/chrome/manifest.json').version
start().catch(console.error)
-async function start(){
+async function start () {
const authWorked = await checkIfAuthWorks()
if (!authWorked) {
console.log(`Sentry auth failed...`)
@@ -31,21 +31,21 @@ async function start(){
console.log('all done!')
}
-async function checkIfAuthWorks() {
+async function checkIfAuthWorks () {
const itWorked = await doesNotFail(async () => {
await exec(`sentry-cli releases --org 'metamask' --project 'metamask' list`)
})
return itWorked
}
-async function checkIfVersionExists() {
+async function checkIfVersionExists () {
const versionAlreadyExists = await doesNotFail(async () => {
await exec(`sentry-cli releases --org 'metamask' --project 'metamask' info ${VERSION}`)
})
return versionAlreadyExists
}
-async function doesNotFail(asyncFn) {
+async function doesNotFail (asyncFn) {
try {
await asyncFn()
return true
diff --git a/development/sourcemap-validator.js b/development/sourcemap-validator.js
index edc97667a..a85547058 100644
--- a/development/sourcemap-validator.js
+++ b/development/sourcemap-validator.js
@@ -11,7 +11,7 @@ const { SourceMapConsumer } = require('source-map')
start()
-async function start() {
+async function start () {
const rawBuild = fs.readFileSync(__dirname + '/../dist/chrome/inpage.js', 'utf8')
const rawSourceMap = fs.readFileSync(__dirname + '/../dist/sourcemaps/inpage.js.map', 'utf8')
const consumer = await new SourceMapConsumer(rawSourceMap)
@@ -34,7 +34,7 @@ async function start() {
if (result.source === 'node_modules/web3/dist/web3.min.js') return // minified mess
const sourceContent = consumer.sourceContentFor(result.source)
const sourceLines = sourceContent.split('\n')
- const line = sourceLines[result.line-1]
+ const line = sourceLines[result.line - 1]
console.log(`\n========================== ${result.source} ====================================\n`)
console.log(line)
console.log(`\n==============================================================================\n`)
@@ -42,8 +42,8 @@ async function start() {
})
}
-function indicesOf(substring, string) {
- var a=[],i=-1;
- while((i=string.indexOf(substring,i+1)) >= 0) a.push(i);
- return a;
+function indicesOf (substring, string) {
+ var a = [], i = -1
+ while ((i = string.indexOf(substring, i + 1)) >= 0) a.push(i)
+ return a
}
diff --git a/development/ui-dev.js b/development/ui-dev.js
index cac433909..b562d4af9 100644
--- a/development/ui-dev.js
+++ b/development/ui-dev.js
@@ -29,7 +29,7 @@ log.setDefaultLevel(1)
// Query String
const qs = require('qs')
-let queryString = qs.parse(window.location.href.split('#')[1])
+const queryString = qs.parse(window.location.href.split('#')[1])
let selectedView = queryString.view || 'first time'
const firstState = states[selectedView]
updateQueryParams(selectedView)
@@ -39,15 +39,15 @@ const MetaMaskUiCss = require('../ui/css')
const injectCss = require('inject-css')
-function updateQueryParams(newView) {
+function updateQueryParams (newView) {
queryString.view = newView
const params = qs.stringify(queryString)
window.location.href = window.location.href.split('#')[0] + `#${params}`
}
const actions = {
- _setBackgroundConnection(){},
- update: function(stateName) {
+ _setBackgroundConnection () {},
+ update: function (stateName) {
selectedView = stateName
updateQueryParams(stateName)
const newState = states[selectedView]
@@ -67,7 +67,7 @@ var store = configureStore(states[selectedView])
// start app
startApp()
-function startApp(){
+function startApp () {
const body = document.body
const container = document.createElement('div')
container.id = 'test-container'
diff --git a/development/verify-locale-strings.js b/development/verify-locale-strings.js
index 8dc0a30f1..5edd35989 100644
--- a/development/verify-locale-strings.js
+++ b/development/verify-locale-strings.js
@@ -1,4 +1,4 @@
-////////////////////////////////////////////////////////////////////////////////
+// //////////////////////////////////////////////////////////////////////////////
//
// Locale verification script
//
@@ -8,7 +8,7 @@
//
// will check the given locale against the strings in english
//
-////////////////////////////////////////////////////////////////////////////////
+// //////////////////////////////////////////////////////////////////////////////
const fs = require('fs')
const path = require('path')
@@ -30,14 +30,13 @@ if (specifiedLocale) {
}
-
-function verifyLocale({ localeMeta }) {
+function verifyLocale ({ localeMeta }) {
const localeCode = localeMeta.code
const localeName = localeMeta.name
try {
const localeFilePath = path.join(process.cwd(), 'app', '_locales', localeCode, 'messages.json')
- targetLocale = JSON.parse(fs.readFileSync(localeFilePath, 'utf8'));
+ targetLocale = JSON.parse(fs.readFileSync(localeFilePath, 'utf8'))
} catch (e) {
if (e.code == 'ENOENT') {
console.log('Locale file not found')
@@ -49,9 +48,9 @@ function verifyLocale({ localeMeta }) {
try {
const englishFilePath = path.join(process.cwd(), 'app', '_locales', 'en', 'messages.json')
- englishLocale = JSON.parse(fs.readFileSync(englishFilePath, 'utf8'));
+ englishLocale = JSON.parse(fs.readFileSync(englishFilePath, 'utf8'))
} catch (e) {
- if(e.code == 'ENOENT') {
+ if (e.code == 'ENOENT') {
console.log('English File not found')
} else {
console.log('Error opening english locale file: ', e)
@@ -71,7 +70,7 @@ function verifyLocale({ localeMeta }) {
if (extraItems.length) {
console.log('\nMissing from english locale:')
- extraItems.forEach(function(key) {
+ extraItems.forEach(function (key) {
console.log(` - [ ] ${key}`)
})
} else {
@@ -80,7 +79,7 @@ function verifyLocale({ localeMeta }) {
if (missingItems.length) {
console.log(`\nMissing:`)
- missingItems.forEach(function(key) {
+ missingItems.forEach(function (key) {
console.log(` - [ ] ${key}`)
})
} else {
@@ -92,6 +91,6 @@ function verifyLocale({ localeMeta }) {
}
}
-function compareLocalesForMissingItems({ base, subject }) {
+function compareLocalesForMissingItems ({ base, subject }) {
return Object.keys(base).filter((key) => !subject[key])
}
diff --git a/development/version-bump.js b/development/version-bump.js
index bedf87c01..31d778b34 100644
--- a/development/version-bump.js
+++ b/development/version-bump.js
@@ -1,6 +1,6 @@
const clone = require('clone')
-async function versionBump(bumpType, changelog, oldManifest) {
+async function versionBump (bumpType, changelog, oldManifest) {
const manifest = clone(oldManifest)
const newVersion = newVersionFrom(manifest, bumpType)
@@ -19,13 +19,13 @@ async function versionBump(bumpType, changelog, oldManifest) {
return {
version: newVersion,
manifest: manifest,
- changelog: logLines.join('\n')
+ changelog: logLines.join('\n'),
}
}
function newVersionFrom (manifest, bumpType) {
const string = manifest.version
- let segments = string.split('.').map((str) => parseInt(str))
+ const segments = string.split('.').map((str) => parseInt(str))
switch (bumpType) {
case 'major':