From e22266f8c4a1ffa0aaed8f76c0ccaaaaa08e7df5 Mon Sep 17 00:00:00 2001 From: Andy Allan Date: Wed, 27 Mar 2019 10:42:16 +0100 Subject: [PATCH] Exclude most views from string literal checks This allows us to work through them slowly, while preventing errors from creeping into directories that already pass. --- .erb-lint.yml | 20 +++++++++++++++++++- 1 file changed, 19 insertions(+), 1 deletion(-) diff --git a/.erb-lint.yml b/.erb-lint.yml index 0861b74a2..a002cdafa 100644 --- a/.erb-lint.yml +++ b/.erb-lint.yml @@ -26,7 +26,25 @@ linters: Rails/OutputSafety: Enabled: false Style/StringLiterals: - Enabled: false # TODO + Exclude: # TODO + - app/views/browse/* + - app/views/changesets/* + - app/views/changeset_comments/* + - app/views/diary_entries/* + - app/views/geocoder/* + - app/views/issues/* + - app/views/layouts/* + - app/views/messages/* + - app/views/notes/* + - app/views/notifier/* + - app/views/oauth/* + - app/views/oauth_clients/* + - app/views/redactions/* + - app/views/reports/* + - app/views/site/* + - app/views/traces/* + - app/views/user_blocks/* + - app/views/users/* Rails/DynamicFindBy: Enabled: false # TODO Style/AndOr: -- 2.43.2