linter
This commit is contained in:
parent
07d62bd309
commit
e9d99479b4
2 changed files with 2 additions and 1 deletions
|
|
@ -14,6 +14,7 @@ module.exports = {
|
|||
'react/jsx-key': 'warn',
|
||||
'react/no-unescaped-entities': 'warn',
|
||||
'react/jsx-no-target-blank': 'warn',
|
||||
'react-hooks/exhaustive-deps': 'warn',
|
||||
'no-restricted-imports': 'warn',
|
||||
eqeqeq: 'warn',
|
||||
'no-duplicate-imports': 'warn',
|
||||
|
|
|
|||
|
|
@ -1,13 +1,13 @@
|
|||
import React, { useCallback } from 'react';
|
||||
|
||||
import { ButtonCascader } from '@grafana/ui';
|
||||
import { ComponentSize } from '@grafana/ui/types/size';
|
||||
import { observer } from 'mobx-react';
|
||||
|
||||
import { WithPermissionControl } from 'containers/WithPermissionControl/WithPermissionControl';
|
||||
import { SelectOption } from 'state/types';
|
||||
import { useStore } from 'state/useStore';
|
||||
import { UserAction } from 'state/userAction';
|
||||
import { ComponentSize } from '@grafana/ui/types/size';
|
||||
|
||||
interface SilenceDropdownProps {
|
||||
onSelect: (value: number) => void;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue