-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
switch to deno linting and formatting
- Loading branch information
1 parent
dedb7b2
commit dea8767
Showing
32 changed files
with
370 additions
and
358 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
{ | ||
"fmt": { | ||
"lineWidth": 80, | ||
"proseWrap": "always", | ||
"semiColons": true, | ||
"useTabs": true, | ||
"singleQuote": true | ||
}, | ||
"lint": { | ||
"rules": { | ||
"include": [ | ||
"ban-untagged-todo", | ||
"default-param-last", | ||
"eqeqeq", | ||
"no-eval", | ||
"no-external-import", | ||
"triple-slash-reference", | ||
"verbatim-module-syntax" | ||
] | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,20 @@ | ||
export { | ||
Client, | ||
GatewayDispatchEvents, | ||
type API, | ||
type APIInteraction, | ||
Client, | ||
GatewayDispatchEvents, | ||
type GatewayMessageUpdateDispatchData as update_data, | ||
type RESTPostAPIWebhookWithTokenJSONBody as wh_token, | ||
type RESTPostAPIWebhookWithTokenQuery as wh_query, | ||
type RESTPostAPIWebhookWithTokenJSONBody as wh_token | ||
} from 'npm:@discordjs/core@1.2.0'; | ||
export { REST, type RawFile } from 'npm:@discordjs/rest@2.3.0'; | ||
export { type RawFile, REST } from 'npm:@discordjs/rest@2.3.0'; | ||
export { WebSocketManager } from 'npm:@discordjs/ws@1.1.0'; | ||
export { | ||
plugin, | ||
type bridge_channel, | ||
type command, | ||
type command_arguments, | ||
type deleted_message, | ||
type lightning, | ||
type message | ||
type message, | ||
plugin, | ||
} from '../lightning/mod.ts'; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.