From db76d72a884e076e13f3414f9b975df67f06a32c Mon Sep 17 00:00:00 2001 From: Arve Knudsen Date: Tue, 26 Nov 2019 09:18:29 +0100 Subject: [PATCH] Fix eslint --- .editorconfig | 5 +++++ .eslintrc.yaml | 7 ++++++- 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/.editorconfig b/.editorconfig index 6a5722a..7ef23c6 100644 --- a/.editorconfig +++ b/.editorconfig @@ -9,3 +9,8 @@ end_of_line = lf indent_style = space max_line_length = 100 indent_size = 2 + +[*.yaml] +indent_style = space +max_line_length = 100 +indent_size = 2 diff --git a/.eslintrc.yaml b/.eslintrc.yaml index ba0897e..4628a40 100644 --- a/.eslintrc.yaml +++ b/.eslintrc.yaml @@ -12,7 +12,12 @@ rules: - "global" comma-dangle: - 2 - - "always" + - + arrays: "always" + objects: "always" + imports: "always" + exports: "always" + functions: "never" quotes: - 2 - "single"