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,12 +19,12 @@ import type { ICommandOptions } from '@utils/types';
|
|||
|
||||
export default abstract class Command {
|
||||
public readonly client: Client;
|
||||
public readonly options: ICommandOptions
|
||||
public readonly options: ICommandOptions;
|
||||
|
||||
public constructor(client: Client, options: ICommandOptions) {
|
||||
this.client = client;
|
||||
this.options = options;
|
||||
}
|
||||
|
||||
public abstract run(message: Message, ...args:string[]): void;
|
||||
public abstract run(message: Message, ...args: string[]): void;
|
||||
}
|
||||
|
|
|
@ -14,6 +14,7 @@
|
|||
* You should have received a copy of the GNU General Public License
|
||||
* along with ArgonBot. If not, see <https: //www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
//Enums
|
||||
export enum ELoggingScope {
|
||||
Startup = 'STARTUP',
|
||||
|
|
Reference in a new issue