diff options
author | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2024-02-16 19:37:01 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-02-17 00:37:01 +0000 |
commit | 4e77741d22778bd09b772fc53f1cbd64107e3d24 (patch) | |
tree | e8010d42ccba5341afd98177d3c1d69d856cbcbd /types/ext | |
parent | 1e69210b53151f31140bb1fbdc9f3d71fa181630 (diff) |
Even more eslint rules (#696)
* capitalized-comments
* Turn rules on
* Add miscellaneous rules
* More rules
Diffstat (limited to 'types/ext')
-rw-r--r-- | types/ext/application.d.ts | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/types/ext/application.d.ts b/types/ext/application.d.ts index 903c8e45..930220f0 100644 --- a/types/ext/application.d.ts +++ b/types/ext/application.d.ts @@ -15,11 +15,10 @@ * along with this program. If not, see <https://www.gnu.org/licenses/>. */ -import type {TokenString} from './core'; +import type {TokenString, EventNames, EventArgument as BaseEventArgument} from './core'; import type {SearchMode} from './display'; import type {FrameEndpointReadyDetails, FrameEndpointConnectedDetails} from './frame-client'; import type {DatabaseUpdateType, DatabaseUpdateCause} from './backend'; -import type {EventNames, EventArgument as BaseEventArgument} from './core'; import type { ApiMap as BaseApiMap, ApiHandler as BaseApiHandler, |