Skip to content

Commit

Permalink
Fixed complexity warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
xdan committed May 11, 2024
1 parent 2a2b2cf commit c119361
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ module.exports = {
node: true
},
rules: {
complexity: ['warn', 15],
complexity: ['warn', 20],
'no-octal-escape': 0,
'@typescript-eslint/no-unsafe-declaration-merging': 'off',
'mocha/no-skipped-tests': 'error',
Expand Down
2 changes: 1 addition & 1 deletion src/core/selection/helpers/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import {
INVISIBLE_SPACE_REG_EXP_END as INV_END,
INVISIBLE_SPACE_REG_EXP_START as INV_START
} from 'jodit/core/constants';
import { Dom } from 'jodit/core/dom';
import { Dom } from 'jodit/core/dom/dom';

export * from './move-node-inside-start';
export * from './move-the-node-along-the-edge-outward';
Expand Down

0 comments on commit c119361

Please sign in to comment.