Commit 55d02509 authored by ioedeveloper's avatar ioedeveloper

Run linting in circleci

parent 3b5fd689
...@@ -146,6 +146,5 @@ function html (opts) { ...@@ -146,6 +146,5 @@ function html (opts) {
</div> </div>
</div> </div>
</div> </div>
</div> </div>`
`
} }
...@@ -22,6 +22,7 @@ export const TxBrowser = ({ requestDebug, unloadRequested, transactionNumber, de ...@@ -22,6 +22,7 @@ export const TxBrowser = ({ requestDebug, unloadRequested, transactionNumber, de
requestDebug(undefined, state.txNumber) requestDebug(undefined, state.txNumber)
} }
} }
const unload = () => { const unload = () => {
unloadRequested() unloadRequested()
} }
......
export * from './lib/modal-dialog-custom'; export * from './lib/modal-dialog-custom'
export * from './lib/remix-ui-modal-dialog'; export * from './lib/remix-ui-modal-dialog'
import React from 'react' import React from 'react' // eslint-disable-line
import './modal-dialog-custom.css' import './modal-dialog-custom.css'
...@@ -6,7 +6,6 @@ import './modal-dialog-custom.css' ...@@ -6,7 +6,6 @@ import './modal-dialog-custom.css'
export interface ModalDialogCustomProps {} export interface ModalDialogCustomProps {}
export const ModalDialogCustom = (props: ModalDialogCustomProps) => { export const ModalDialogCustom = (props: ModalDialogCustomProps) => {
return ( return (
<div> <div>
<h1>Welcome to modal-dialog-custom!</h1> <h1>Welcome to modal-dialog-custom!</h1>
......
/* eslint-disable */
export interface ModalDialogProps { export interface ModalDialogProps {
title?: string, title?: string,
content?: JSX.Element, content?: JSX.Element,
......
...@@ -41,7 +41,7 @@ ...@@ -41,7 +41,7 @@
"workspace-schematic": "nx workspace-schematic", "workspace-schematic": "nx workspace-schematic",
"dep-graph": "nx dep-graph", "dep-graph": "nx dep-graph",
"help": "nx help", "help": "nx help",
"lint:libs": "nx run-many --target=lint --projects=remixd", "lint:libs": "nx run-many --target=lint --projects=remixd,remix-ui-modal-dialog",
"build:libs": "nx run-many --target=build --parallel=false --with-deps=true --projects=remix-analyzer,remix-astwalker,remix-debug,remix-lib,remix-simulator,remix-solidity,remix-tests,remix-url-resolver,remixd", "build:libs": "nx run-many --target=build --parallel=false --with-deps=true --projects=remix-analyzer,remix-astwalker,remix-debug,remix-lib,remix-simulator,remix-solidity,remix-tests,remix-url-resolver,remixd",
"test:libs": "nx run-many --target=test --projects=remix-analyzer,remix-astwalker,remix-debug,remix-lib,remix-simulator,remix-solidity,remix-tests,remix-url-resolver,remixd", "test:libs": "nx run-many --target=test --projects=remix-analyzer,remix-astwalker,remix-debug,remix-lib,remix-simulator,remix-solidity,remix-tests,remix-url-resolver,remixd",
"publish:libs": "npm run build:libs & lerna publish --skip-git & npm run bumpVersion:libs", "publish:libs": "npm run build:libs & lerna publish --skip-git & npm run bumpVersion:libs",
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment