From ffb20db9da0375f7f38df4516bf04e8e48ca4077 Mon Sep 17 00:00:00 2001 From: TDSSS <32099540+TDSSS@users.noreply.github.com> Date: Fri, 25 Sep 2020 22:09:42 +0200 Subject: [PATCH] goodbye max lines error (#14327) --- tgui/.eslintrc.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/tgui/.eslintrc.yml b/tgui/.eslintrc.yml index 67e74085c7e..595a6978f91 100644 --- a/tgui/.eslintrc.yml +++ b/tgui/.eslintrc.yml @@ -366,13 +366,13 @@ rules: ## Enforce a maximum depth that blocks can be nested # max-depth: error ## Enforce a maximum line length - max-len: [error, { - code: 80, + #max-len: [error, { + # code: 80, ## Ignore imports - ignorePattern: '^(import\s.+\sfrom\s|.*require\()', - ignoreUrls: true, - ignoreRegExpLiterals: true, - }] + #ignorePattern: '^(import\s.+\sfrom\s|.*require\()', + #ignoreUrls: true, + #ignoreRegExpLiterals: true, + #}] ## Enforce a maximum number of lines per file # max-lines: error ## Enforce a maximum number of line of code in a function