mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2024-08-30 18:12:39 +00:00
fix: modify some eslint rule (#2359)
This commit is contained in:
parent
9717dfa3c4
commit
a0efd206a9
@ -17,7 +17,7 @@ module.exports = {
|
||||
'@typescript-eslint/adjacent-overload-signatures': 'error',
|
||||
'@typescript-eslint/no-empty-function': 'error',
|
||||
'@typescript-eslint/no-empty-interface': 'warn',
|
||||
'@typescript-eslint/no-floating-promises': 'error',
|
||||
'@typescript-eslint/no-floating-promises': 'warn',
|
||||
'@typescript-eslint/await-thenable': 'error',
|
||||
'@typescript-eslint/no-namespace': 'error',
|
||||
'@typescript-eslint/no-unnecessary-type-assertion': 'error',
|
||||
@ -42,18 +42,13 @@ module.exports = {
|
||||
'no-param-reassign': 'error',
|
||||
'no-redeclare': 'error',
|
||||
'no-sequences': 'error',
|
||||
'no-shadow': [
|
||||
'error',
|
||||
{
|
||||
hoist: 'all',
|
||||
},
|
||||
],
|
||||
'no-throw-literal': 'error',
|
||||
'no-unsafe-finally': 'error',
|
||||
'no-unused-labels': 'error',
|
||||
'no-var': 'warn',
|
||||
'no-void': 'off',
|
||||
'prefer-const': 'warn',
|
||||
'prefer-spread': 'off',
|
||||
},
|
||||
ignorePatterns: ['src/**/*.test.ts'],
|
||||
};
|
||||
|
@ -2,7 +2,7 @@ import { DocumentControllerContext } from '$app/stores/effects/document/document
|
||||
import { useAppDispatch } from '@/appflowy_app/stores/store';
|
||||
import { useCallback, useContext } from 'react';
|
||||
import { insertAfterNodeThunk, deleteNodeThunk } from '@/appflowy_app/stores/reducers/document/async_actions';
|
||||
// eslint-disable-next-line no-shadow
|
||||
|
||||
export enum ActionType {
|
||||
InsertAfter = 'insertAfter',
|
||||
Remove = 'remove',
|
||||
|
@ -1,4 +1,3 @@
|
||||
// eslint-disable-next-line no-shadow
|
||||
export enum BlockType {
|
||||
PageBlock = 'page',
|
||||
HeadingBlock = 'heading',
|
||||
@ -38,7 +37,6 @@ export interface TextDelta {
|
||||
attributes?: Record<string, string | boolean>;
|
||||
}
|
||||
|
||||
// eslint-disable-next-line no-shadow
|
||||
export enum BlockActionType {
|
||||
Insert = 0,
|
||||
Update = 1,
|
||||
@ -84,7 +82,6 @@ export interface DocumentState {
|
||||
textSelections: Record<string, TextSelection>;
|
||||
}
|
||||
|
||||
// eslint-disable-next-line no-shadow
|
||||
export enum ChangeType {
|
||||
BlockInsert,
|
||||
BlockUpdate,
|
||||
|
@ -3,7 +3,6 @@ export function debounce(fn: (...args: any[]) => void, delay: number) {
|
||||
return (...args: any[]) => {
|
||||
clearTimeout(timeout);
|
||||
timeout = setTimeout(() => {
|
||||
// eslint-disable-next-line prefer-spread
|
||||
fn.apply(undefined, args);
|
||||
}, delay);
|
||||
};
|
||||
@ -15,10 +14,8 @@ export function throttle(fn: (...args: any[]) => void, delay: number, immediate
|
||||
if (!timeout) {
|
||||
timeout = setTimeout(() => {
|
||||
timeout = null;
|
||||
// eslint-disable-next-line prefer-spread
|
||||
!immediate && fn.apply(undefined, args);
|
||||
}, delay);
|
||||
// eslint-disable-next-line prefer-spread
|
||||
immediate && fn.apply(undefined, args);
|
||||
}
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user