mirror of
https://github.com/google/blockly.git
synced 2026-01-04 07:30:08 +01:00
chore: Organise imports (#8527)
* chore(deps): Add pretter-plugin-organize-imports * chore: Remove insignificant blank lines in import sections Since prettier-plugin-organize-imports sorts imports within sections separated by blank lines, but preserves the section divisions, remove any blank lines that are not dividing imports into meaningful sections. Do not remove blank lines separating side-effect-only imports from main imports. * chore: Remove unneded eslint-disable directives * chore: Organise imports
This commit is contained in:
committed by
GitHub
parent
ec8f9c8589
commit
ce22f42868
@@ -10,11 +10,11 @@
|
||||
|
||||
// Former goog.module ID: Blockly.Python.loops
|
||||
|
||||
import * as stringUtils from '../../core/utils/string.js';
|
||||
import type {Block} from '../../core/block.js';
|
||||
import type {ControlFlowInLoopBlock} from '../../blocks/loops.js';
|
||||
import type {PythonGenerator} from './python_generator.js';
|
||||
import type {Block} from '../../core/block.js';
|
||||
import {NameType} from '../../core/names.js';
|
||||
import * as stringUtils from '../../core/utils/string.js';
|
||||
import type {PythonGenerator} from './python_generator.js';
|
||||
import {Order} from './python_generator.js';
|
||||
|
||||
export function controls_repeat_ext(block: Block, generator: PythonGenerator) {
|
||||
|
||||
Reference in New Issue
Block a user