mirror of
https://github.com/mozilla/pdf.js.git
synced 2025-04-20 15:18:08 +02:00
Enable the import/no-cycle
ESLint plugin rule
Having cyclical imports is obviously not a good idea, and this ESLint plugin rule can help detect those; please see https://github.com/import-js/eslint-plugin-import/blob/main/docs/rules/no-cycle.md
This commit is contained in:
parent
605d9f492f
commit
cf3a35e9da
22 changed files with 328 additions and 213 deletions
|
@ -19,7 +19,7 @@ import {
|
|||
$getChildrenByClass,
|
||||
$getChildrenByName,
|
||||
$text,
|
||||
} from "../../src/core/xfa/xfa_object.js";
|
||||
} from "../../src/core/xfa/symbol_utils.js";
|
||||
import { Binder } from "../../src/core/xfa/bind.js";
|
||||
import { searchNode } from "../../src/core/xfa/som.js";
|
||||
import { XFAParser } from "../../src/core/xfa/parser.js";
|
||||
|
|
|
@ -13,7 +13,7 @@
|
|||
* limitations under the License.
|
||||
*/
|
||||
|
||||
import { $uid } from "../../src/core/xfa/xfa_object.js";
|
||||
import { $uid } from "../../src/core/xfa/symbol_utils.js";
|
||||
import { DataHandler } from "../../src/core/xfa/data.js";
|
||||
import { searchNode } from "../../src/core/xfa/som.js";
|
||||
import { XFAParser } from "../../src/core/xfa/parser.js";
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue