build(deps-dev): bump eslint-plugin-import from 2.26.0 to 2.27.2 (#1435)

* build(deps-dev): bump eslint-plugin-import from 2.26.0 to 2.27.2

Bumps [eslint-plugin-import](https://github.com/import-js/eslint-plugin-import) from 2.26.0 to 2.27.2.
- [Release notes](https://github.com/import-js/eslint-plugin-import/releases)
- [Changelog](https://github.com/import-js/eslint-plugin-import/blob/main/CHANGELOG.md)
- [Commits](https://github.com/import-js/eslint-plugin-import/compare/v2.26.0...v2.27.2)

---
updated-dependencies:
- dependency-name: eslint-plugin-import
  dependency-type: direct:development
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>

* fix breaking changes in eslint sort order

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: David Lechner <david@pybricks.com>
This commit is contained in:
dependabot[bot]
2023-01-12 16:50:38 +00:00
committed by GitHub
co-authored by David Lechner
parent 35826266b5
commit a50cc9801c
6 changed files with 76 additions and 8 deletions
+1 -1
View File
@@ -2,9 +2,9 @@
// Copyright (c) 2021-2022 The Pybricks Authors
import { AnyAction } from 'redux';
import { bleDidConnectPybricks, bleDidDisconnectPybricks } from '../ble/actions';
import { didReceiveStatusReport } from '../ble-pybricks-service/actions';
import { Status, statusToFlag } from '../ble-pybricks-service/protocol';
import { bleDidConnectPybricks, bleDidDisconnectPybricks } from '../ble/actions';
import {
didFailToFinishDownload,
didFinishDownload,
+1 -1
View File
@@ -3,6 +3,7 @@
import { Reducer, combineReducers } from 'redux';
import * as semver from 'semver';
import { bleDidConnectPybricks, bleDidDisconnectPybricks } from '../ble/actions';
import { HubType } from '../ble-lwp3-service/protocol';
import {
blePybricksServiceDidNotReceiveHubCapabilities,
@@ -15,7 +16,6 @@ import {
Status,
statusToFlag,
} from '../ble-pybricks-service/protocol';
import { bleDidConnectPybricks, bleDidDisconnectPybricks } from '../ble/actions';
import { pythonVersionToSemver } from '../utils/version';
import {
didFailToFinishDownload,
+1 -1
View File
@@ -14,6 +14,7 @@ import {
takeEvery,
} from 'typed-redux-saga/macro';
import { alertsShowAlert } from '../alerts/actions';
import { bleDidConnectPybricks } from '../ble/actions';
import { didFailToWrite, didWrite, write } from '../ble-nordic-uart-service/actions';
import { nordicUartSafeTxCharLength } from '../ble-nordic-uart-service/protocol';
import {
@@ -26,7 +27,6 @@ import {
sendWriteUserRamCommand,
} from '../ble-pybricks-service/actions';
import { FileFormat } from '../ble-pybricks-service/protocol';
import { bleDidConnectPybricks } from '../ble/actions';
import { editorGetValue } from '../editor/sagaLib';
import {
compile,
+1 -1
View File
@@ -5,8 +5,8 @@ import { eventChannel } from 'redux-saga';
import { all, spawn, take } from 'typed-redux-saga/macro';
import alerts, { AlertsSagaContext } from './alerts/sagas';
import app from './app/sagas';
import blePybricksService from './ble-pybricks-service/sagas';
import ble from './ble/sagas';
import blePybricksService from './ble-pybricks-service/sagas';
import errorLog from './error-log/sagas';
import explorer from './explorer/sagas';
import fileStorage, { FileStorageSageContext } from './fileStorage/sagas';