style: reformatted code a lil bit
This commit is contained in:
parent
727ac245ff
commit
d57e14a3af
4 changed files with 11 additions and 4 deletions
6
.idea/jsLinters/eslint.xml
Normal file
6
.idea/jsLinters/eslint.xml
Normal file
|
@ -0,0 +1,6 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<project version="4">
|
||||||
|
<component name="EslintConfiguration">
|
||||||
|
<option name="fix-on-save" value="true" />
|
||||||
|
</component>
|
||||||
|
</project>
|
|
@ -19,7 +19,7 @@ import type { ICommandOptions } from '@utils/types';
|
||||||
|
|
||||||
export default abstract class Command {
|
export default abstract class Command {
|
||||||
public readonly client: Client;
|
public readonly client: Client;
|
||||||
public readonly options: ICommandOptions
|
public readonly options: ICommandOptions;
|
||||||
|
|
||||||
public constructor(client: Client, options: ICommandOptions) {
|
public constructor(client: Client, options: ICommandOptions) {
|
||||||
this.client = client;
|
this.client = client;
|
||||||
|
|
|
@ -14,6 +14,7 @@
|
||||||
* You should have received a copy of the GNU General Public License
|
* You should have received a copy of the GNU General Public License
|
||||||
* along with ArgonBot. If not, see <https: //www.gnu.org/licenses/>.
|
* along with ArgonBot. If not, see <https: //www.gnu.org/licenses/>.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
//Enums
|
//Enums
|
||||||
export enum ELoggingScope {
|
export enum ELoggingScope {
|
||||||
Startup = 'STARTUP',
|
Startup = 'STARTUP',
|
||||||
|
|
Reference in a new issue