Skip to content

Commit

Permalink
FIX lockfile & FIX linting
Browse files Browse the repository at this point in the history
  • Loading branch information
ndelangen committed Jan 21, 2020
1 parent 94aeb7a commit 045db27
Show file tree
Hide file tree
Showing 4 changed files with 3,444 additions and 2,980 deletions.
1 change: 1 addition & 0 deletions .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ module.exports = {
'react/jsx-fragments': 'off',
'@typescript-eslint/ban-ts-ignore': 'off',
'@typescript-eslint/no-object-literal-type-assertion': 'off',
'@typescript-eslint/no-empty-function': 'off',
'react/sort-comp': [
'error',
{
Expand Down
1 change: 0 additions & 1 deletion addons/knobs/src/__types__/knob-test-cases.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ import {
} from '../index';

// Note: this is a helper to batch test return types and avoid "declared but never read" errors
// eslint-disable-next-line @typescript-eslint/no-empty-function
function expectKnobOfType<T>(..._: T[]) {}

const groupId = 'GROUP-ID1';
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { Injectable } from '@angular/core';

@Injectable()
export class DummyService {
// eslint-disable-next-line @typescript-eslint/no-empty-function, no-useless-constructor
// eslint-disable-next-line no-useless-constructor
constructor() {}

getItems() {
Expand Down
Loading

0 comments on commit 045db27

Please sign in to comment.