-
-
Notifications
You must be signed in to change notification settings - Fork 499
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
121 changed files
with
7,902 additions
and
7,704 deletions.
There are no files selected for viewing
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,6 @@ | ||
{ | ||
"extends": ["development"], | ||
"hints": { | ||
"typescript-config/consistent-casing": "off" | ||
} | ||
} |
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,88 +1,85 @@ | ||
{ | ||
"$schema": "https://biomejs.dev/schemas/1.9.2/schema.json", | ||
"organizeImports": { | ||
"enabled": true | ||
}, | ||
"linter": { | ||
"enabled": true, | ||
"rules": { | ||
"all": true, | ||
"complexity": { | ||
"noBannedTypes": "off", | ||
"noExcessiveCognitiveComplexity": "off", | ||
"noForEach": "off", | ||
"noStaticOnlyClass": "off" | ||
}, | ||
"correctness": { | ||
"noNodejsModules": "off", | ||
"noUnusedFunctionParameters": "off", | ||
"noUnusedVariables": "off", | ||
"noVoidTypeReturn": "off", | ||
"useImportExtensions": "off" | ||
}, | ||
"performance": { | ||
"noBarrelFile": "off", | ||
"useTopLevelRegex": "off" | ||
}, | ||
"security": { | ||
"noGlobalEval": "off" | ||
}, | ||
"style": { | ||
"noDefaultExport": "off", | ||
"noInferrableTypes": "off", | ||
"noNamespaceImport": "off", | ||
"noNonNullAssertion": "off", | ||
"noParameterAssign": "off", | ||
"useBlockStatements": "off", | ||
"useDefaultSwitchClause": "off", | ||
"useFilenamingConvention": "off", | ||
"useImportType": "warn", | ||
"useNamingConvention": "off", | ||
"useNumberNamespace": "off", | ||
"useSingleCaseStatement": "off" | ||
}, | ||
"suspicious": { | ||
"noConfusingVoidType": "off", | ||
"noConsole": "off", | ||
"noConsoleLog": "off", | ||
"noEmptyBlockStatements": "off", | ||
"noEvolvingTypes": "off", | ||
"noExplicitAny": "off", | ||
"noGlobalIsFinite": "off", | ||
"noGlobalIsNan": "off", | ||
"useAwait": "off" | ||
} | ||
} | ||
}, | ||
"formatter": { | ||
"enabled": true, | ||
"indentWidth": 4, | ||
"indentStyle": "space", | ||
"lineEnding": "crlf", | ||
"lineWidth": 140, | ||
"formatWithErrors": true | ||
}, | ||
"json": { | ||
"linter": { | ||
"enabled": true | ||
}, | ||
"formatter": { | ||
"enabled": true, | ||
"indentWidth": 2, | ||
"lineEnding": "crlf", | ||
"lineWidth": 80 | ||
} | ||
}, | ||
"javascript": { | ||
"formatter": { | ||
"quoteStyle": "double", | ||
"arrowParentheses": "always", | ||
"bracketSameLine": true, | ||
"semicolons": "always" | ||
} | ||
}, | ||
"files": { | ||
"ignoreUnknown": false, | ||
"ignore": [".vscode", "dist", "locales", "node_modules"] | ||
} | ||
"$schema": "https://biomejs.dev/schemas/1.9.0/schema.json", | ||
"vcs": { | ||
"enabled": true, | ||
"clientKind": "git", | ||
"useIgnoreFile": true, | ||
"defaultBranch": "main" | ||
}, | ||
"files": { | ||
"ignoreUnknown": true, | ||
"ignore": ["node_modules/", "dist", "package.json", "tsconfig.json", ".vscode"] | ||
}, | ||
"formatter": { | ||
"enabled": true, | ||
"indentStyle": "tab", | ||
"indentWidth": 2, | ||
"lineWidth": 120, | ||
"lineEnding": "crlf", | ||
"formatWithErrors": true | ||
}, | ||
"organizeImports": { | ||
"enabled": true | ||
}, | ||
"linter": { | ||
"enabled": true, | ||
"rules": { | ||
"recommended": false, | ||
"all": true, | ||
"security": { | ||
"noGlobalEval": "off" | ||
}, | ||
"suspicious": { | ||
"noExplicitAny": "off", | ||
"noAssignInExpressions": "off", | ||
"useAwait": "off", | ||
"noConfusingVoidType": "off", | ||
"noAsyncPromiseExecutor": "off", | ||
"noUnsafeDeclarationMerging": "off", | ||
"noEmptyInterface": "off", | ||
"noThenProperty": "off" | ||
}, | ||
"correctness": { | ||
"noNodejsModules": "off", | ||
"useImportExtensions": "off", | ||
"noUnusedFunctionParameters": "off", | ||
"noUnusedVariables": "off" | ||
}, | ||
"style": { | ||
"noDefaultExport": "off", | ||
"useBlockStatements": "off", | ||
"noParameterProperties": "off", | ||
"useNamingConvention": "off", | ||
"noNonNullAssertion": "off", | ||
"useForOf": "off", | ||
"useDefaultSwitchClause": "off", | ||
"noParameterAssign": "off", | ||
"useFilenamingConvention": "off", | ||
"useEnumInitializers": "off", | ||
"useExplicitLengthCheck": "off", | ||
"noNamespaceImport": "off", | ||
"noInferrableTypes": "info" | ||
}, | ||
"complexity": { | ||
"noForEach": "off", | ||
"noExcessiveCognitiveComplexity": "off", | ||
"noUselessConstructor": "off", | ||
"noBannedTypes": "off" | ||
}, | ||
"performance": { | ||
"noBarrelFile": "off", | ||
"noDelete": "off", | ||
"noReExportAll": "off", | ||
"useTopLevelRegex": "off" | ||
} | ||
} | ||
}, | ||
"javascript": { | ||
"formatter": { | ||
"quoteStyle": "single", | ||
"semicolons": "always", | ||
"arrowParentheses": "asNeeded", | ||
"bracketSameLine": true | ||
} | ||
} | ||
} |
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 |
---|---|---|
|
@@ -632,4 +632,4 @@ | |
"Leave a guild": "离开服务器", | ||
"List all guilds the bot is in": "列出机器人所在的所有服务器", | ||
"Restart the bot": "重启机器人" | ||
} | ||
} |
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 |
---|---|---|
|
@@ -632,4 +632,4 @@ | |
"Leave a guild": "離開伺服器", | ||
"List all guilds the bot is in": "列出機器人所在的所有伺服器", | ||
"Restart the bot": "重啟機器人" | ||
} | ||
} |
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
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
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
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
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 |
---|---|---|
|
@@ -622,4 +622,4 @@ | |
"no_music_playing": "Nada está a ser reproduzido neste momento." | ||
} | ||
} | ||
} | ||
} |
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
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
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,10 +1,10 @@ | ||
{ | ||
"apps": [ | ||
{ | ||
"name": "lavamusic", | ||
"script": "dist/index.js", | ||
"node_args": ["--enable-source-maps"], | ||
"restart_delay": 10000 | ||
} | ||
] | ||
"apps": [ | ||
{ | ||
"name": "lavamusic", | ||
"script": "dist/index.js", | ||
"node_args": ["--enable-source-maps"], | ||
"restart_delay": 10000 | ||
} | ||
] | ||
} |
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
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.