Remove @typescript-eslint/no-explicit-any rule exception

[MAILPOET-3201]
This commit is contained in:
Pavel Dohnal
2020-11-16 14:39:02 +01:00
committed by Veljko V
parent 752bbc6fe7
commit db14767857
49 changed files with 195 additions and 77 deletions

View File

@@ -1,3 +1,4 @@
/* eslint-disable @typescript-eslint/no-explicit-any */
import React from 'react';
import { useSelector } from 'settings/store/hooks';
import ReactSelect from 'common/form/react_select/react_select';
@@ -6,7 +7,7 @@ type Props = {
id: string;
value: string[];
placeholder?: string;
setValue: (x: string[]) => any;
setValue: (x: string[]) => void;
}
export default (props: Props) => {