Skip to content

Commit

Permalink
Working react-scripts upgrade
Browse files Browse the repository at this point in the history
  • Loading branch information
cmdcolin committed Apr 28, 2021
1 parent 71482fa commit 9aaef0d
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 8 deletions.
6 changes: 4 additions & 2 deletions .eslintrc.base.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,9 @@
"rules": {
"@typescript-eslint/await-thenable": "off",
"@typescript-eslint/ban-ts-ignore": "off",
"@typescript-eslint/camelcase": "error",
"@typescript-eslint/ban-ts-comment": "off",
"@typescript-eslint/ban-types": "off",
"@typescript-eslint/camelcase": "off",
"@typescript-eslint/explicit-function-return-type": "off",
"@typescript-eslint/explicit-member-accessibility": "off",
"@typescript-eslint/no-empty-function": "off",
Expand Down Expand Up @@ -64,7 +66,7 @@
"react/no-unused-state": "error",
"react/prefer-stateless-function": "error",
"react/prop-types": "error",
"react/require-default-props": "error",
"react/require-default-props": "off",
"spaced-comment": [
"error",
"always",
Expand Down
1 change: 0 additions & 1 deletion packages/core/util/offscreenCanvasPonyfill.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
/* eslint-disable @typescript-eslint/camelcase */
/* eslint-disable import/no-mutable-exports */
/* eslint-disable no-restricted-globals */
/* eslint-disable prefer-destructuring */
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* eslint-disable @typescript-eslint/camelcase,no-underscore-dangle */
/* eslint-disable no-underscore-dangle */
import {
Feature,
SimpleFeatureSerialized,
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* eslint-disable @typescript-eslint/camelcase,no-underscore-dangle */
/* eslint-disable no-underscore-dangle */
import {
Feature,
SimpleFeatureSerialized,
Expand Down
2 changes: 1 addition & 1 deletion plugins/variants/src/VcfTabixAdapter/VcfFeature.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { Feature } from '@jbrowse/core/util/simpleFeature'

/* eslint-disable no-underscore-dangle, @typescript-eslint/camelcase */
/* eslint-disable no-underscore-dangle */

/**
* VCF Feature creation with lazy genotype evaluation.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
// eslint-disable-next-line import/no-unresolved
const AWS = require('aws-sdk')
// eslint-disable-next-line @typescript-eslint/camelcase
const url_parser = require('url')

const dynamo = new AWS.DynamoDB.DocumentClient()
Expand Down
2 changes: 1 addition & 1 deletion products/jbrowse-web/src/rpc.worker.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* eslint-disable no-restricted-globals, no-console, @typescript-eslint/camelcase, react-hooks/rules-of-hooks */
/* eslint-disable no-restricted-globals, no-console, react-hooks/rules-of-hooks */
import './workerPolyfill'

import RpcServer from '@librpc/web'
Expand Down

0 comments on commit 9aaef0d

Please sign in to comment.