Skip to content

Commit efa2ce1

Browse files
Remove no-unused-vars
1 parent 8fc77f1 commit efa2ce1

File tree

5 files changed

+0
-5
lines changed

5 files changed

+0
-5
lines changed

React/src/App.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,6 @@ function arrayCellTemplate(container: HTMLElement, options: DataGridTypes.Column
4545

4646
function renderMultipleDropDownBox(
4747
currentValue: number[],
48-
// eslint-disable-next-line no-unused-vars
4948
setValue: (value: number[]) => void,
5049
dataSource: ArrayStore | DataSourceOptions,
5150
): JSX.Element {

React/src/components/DropDownBoxSave.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ type DropDownBoxAction =
88

99
interface DropDownBoxSaveProps {
1010
selectedKeys: number[];
11-
// eslint-disable-next-line no-unused-vars
1211
setCellValue: (value: number[]) => void;
1312
setState: React.Dispatch<DropDownBoxAction>;
1413
}

React/src/components/MultipleDropDownBox.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ import DropDownBoxSave from './DropDownBoxSave';
77
interface MultipleDropDownBoxProps {
88
value: number[];
99
dataSource: DataSourceOptions | ArrayStore;
10-
// eslint-disable-next-line no-unused-vars
1110
setValue: (newValue: number[]) => void;
1211
}
1312

Vue/src/components/CityDropDownBoxComponent.vue

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,6 @@ import type { DataSource } from 'devextreme-vue/common/data';
3939
4040
interface Props {
4141
value: number[] | undefined;
42-
// eslint-disable-next-line no-unused-vars
4342
onValueChanged: (value: number[]) => void;
4443
dataSource: DataSource;
4544
cellInfo: DxDataGridTypes.ColumnEditCellTemplateData<Employee, number>;

Vue/src/components/StateDropDownBoxComponent.vue

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,6 @@ import type { Employee, State } from '../data';
3939
4040
interface Props {
4141
value: number[] | undefined;
42-
// eslint-disable-next-line no-unused-vars
4342
onValueChanged: (value: number[]) => void;
4443
dataSource: State[];
4544
cellInfo: DxDataGridTypes.ColumnEditCellTemplateData<Employee, number>;

0 commit comments

Comments
 (0)