Skip to content

Commit

Permalink
faster lint (#4048)
Browse files Browse the repository at this point in the history
  • Loading branch information
redallen authored Apr 9, 2020
1 parent fbf6e1c commit 47aa1b0
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 3 deletions.
2 changes: 1 addition & 1 deletion .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@
"plugin:jsdoc/recommended"
],
"parserOptions": {
"project": "packages/tsconfig.base.json",
"sourceType": "module",
"ecmaFeatures": {
"jsx": true
Expand Down Expand Up @@ -90,6 +89,7 @@
"no-empty": "error",
"no-eval": "error",
"no-new-wrappers": "error",
"no-prototype-builtins": "off",
"no-shadow": "error",
"no-throw-literal": "error",
"no-trailing-spaces": "off",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import * as React from 'react';
// eslint-disable-next-line import/no-extraneous-dependencies
import {
Table,
TableHeader,
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
import React from 'react';
import PropTypes from 'prop-types';
// eslint-disable-next-line import/no-extraneous-dependencies
import { Table, TableHeader, TableBody, TableVariant, sortable, SortByDirection } from '@patternfly/react-table';

export default class DemoSortableTable extends React.Component {
Expand Down

0 comments on commit 47aa1b0

Please sign in to comment.