From 529147f9253ef1c2b049fd8bc8831de59f699632 Mon Sep 17 00:00:00 2001 From: Bsian Date: Tue, 15 Oct 2019 18:45:48 +0100 Subject: [PATCH] Linting config fix? --- .eslintrc.json | 1 + .vscode/settings.json | 8 ++++++++ package.json | 4 +++- src/commands/help.ts | 1 + 4 files changed, 13 insertions(+), 1 deletion(-) create mode 100644 .vscode/settings.json create mode 100644 src/commands/help.ts diff --git a/.eslintrc.json b/.eslintrc.json index 7a7ab3e..75d9e49 100644 --- a/.eslintrc.json +++ b/.eslintrc.json @@ -19,5 +19,6 @@ "@typescript-eslint" ], "rules": { + "linebreak-style": "off" } } \ No newline at end of file diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 0000000..a4cd005 --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,8 @@ +{ + "eslint.enable": true, + "eslint.validate": [ + "javascript", + "javascriptreact", + "typescript" + ] +} \ No newline at end of file diff --git a/package.json b/package.json index 7e3623b..4aeb511 100644 --- a/package.json +++ b/package.json @@ -3,7 +3,9 @@ "version": "1.0.0", "description": "The official LOC Cloud Services system, this is a rewrite of the original version. ", "main": "dist/Client.js", - "scripts": { "lint": "eslint ./ --ext ts --fix" }, + "scripts": { + "lint": "eslint ./ --ext ts --fix" + }, "author": "Library of Code sp-us Engineering Team", "license": "MIT", "private": false, diff --git a/src/commands/help.ts b/src/commands/help.ts new file mode 100644 index 0000000..302578d --- /dev/null +++ b/src/commands/help.ts @@ -0,0 +1 @@ +import { Message } from 'eris' \ No newline at end of file