1
0
mirror of https://github.com/oceanprotocol/commons.git synced 2023-03-15 18:03:00 +01:00

lint fixes, run linting as part of main test

This commit is contained in:
Matthias Kretschmann 2019-01-23 11:38:27 +01:00
parent 10812e3900
commit da35519ffd
Signed by: m
GPG Key ID: 606EEEF3C479A91F
11 changed files with 139 additions and 136 deletions

View File

@ -5,7 +5,7 @@
"scripts": { "scripts": {
"start": "react-scripts start", "start": "react-scripts start",
"build": "react-scripts build", "build": "react-scripts build",
"test": "react-scripts test", "test": "npm run lint && react-scripts test",
"eject": "react-scripts eject", "eject": "react-scripts eject",
"format:js": "prettier --parser typescript --write '**/*.{js,jsx,ts,tsx}'", "format:js": "prettier --parser typescript --write '**/*.{js,jsx,ts,tsx}'",
"format:css": "prettier-stylelint --write --quiet 'src/**/*.{css,scss}'", "format:css": "prettier-stylelint --write --quiet 'src/**/*.{css,scss}'",

View File

@ -15,7 +15,7 @@
align-items: center; align-items: center;
justify-content: center; justify-content: center;
font-size: calc(10px + 2vmin); font-size: calc(10px + 2vmin);
color: white; color: #fff;
} }
.App-link { .App-link {

View File

@ -1,10 +1,10 @@
import React, { Component } from 'react' import React, { Component } from 'react'
import './App.css'
import { User, userDefults } from './context/User' import { User, userDefults } from './context/User'
import Routes from './Routes' import Routes from './Routes'
import './App.css'
class App extends Component { class App extends Component {
render() { public render() {
return ( return (
<User.Provider value={userDefults}> <User.Provider value={userDefults}>
<Routes /> <Routes />

View File

@ -1,9 +1,9 @@
body { body {
margin: 0; margin: 0;
padding: 0; padding: 0;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen,
'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', Ubuntu, Cantarell, 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
'Helvetica Neue', sans-serif; sans-serif;
-webkit-font-smoothing: antialiased; -webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale; -moz-osx-font-smoothing: grayscale;
} }

View File

@ -1,7 +1,7 @@
import React from 'react' import React from 'react'
import ReactDOM from 'react-dom' import ReactDOM from 'react-dom'
import './index.css'
import App from './App' import App from './App'
import './index.css'
import * as serviceWorker from './serviceWorker' import * as serviceWorker from './serviceWorker'
ReactDOM.render(<App />, document.getElementById('root')) ReactDOM.render(<App />, document.getElementById('root'))

View File

@ -1,7 +1,7 @@
import React, { Component } from 'react' import React, { Component } from 'react'
class Home extends Component { class Home extends Component {
render() { public render() {
return <div>Home</div> return <div>Home</div>
} }
} }

View File

@ -1,7 +1,7 @@
import React, { Component } from 'react' import React, { Component } from 'react'
class NotFound extends Component { class NotFound extends Component {
render() { public render() {
return <div>Not found</div> return <div>Not found</div>
} }
} }

View File

@ -1,3 +1,5 @@
/* tslint:disable */
// This optional code is used to register a service worker. // This optional code is used to register a service worker.
// register() is not called by default. // register() is not called by default.
@ -114,7 +116,8 @@ function checkValidServiceWorker(swUrl: string, config?: Config) {
const contentType = response.headers.get('content-type') const contentType = response.headers.get('content-type')
if ( if (
response.status === 404 || response.status === 404 ||
(contentType != null && contentType.indexOf('javascript') === -1) (contentType != null &&
contentType.indexOf('javascript') === -1)
) { ) {
// No service worker found. Probably a different app. Reload the page. // No service worker found. Probably a different app. Reload the page.
navigator.serviceWorker.ready.then(registration => { navigator.serviceWorker.ready.then(registration => {