From d75d8cf80709264f6360aff8261cafd1200bc9e1 Mon Sep 17 00:00:00 2001 From: Yongmin Hong Date: Sun, 12 May 2024 19:01:58 +0900 Subject: [PATCH] .arclint: more rules, exclusions Summary: Probably standard changes (tm) at this point. Signed-off-by: Yongmin Hong Test Plan: `arc lint` Reviewers: O1 revi & automations, revi Reviewed By: O1 revi & automations, revi Differential Revision: https://issuetracker.revi.xyz/D79 --- .arclint | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/.arclint b/.arclint index 6a57b9b..5d44462 100644 --- a/.arclint +++ b/.arclint @@ -1,5 +1,22 @@ { + "exclude": [ + "(^package-lock.json$)" + ], "linters": { + "chmod": { + "type": "chmod" + }, + "filename": { + "type": "filename" + }, + "json": { + "type": "json", + "include": [ + "(\\.arcconfig$)", + "(\\.arclint$)", + "(\\.json$)" + ] + }, "merge-conflict": { "type": "merge-conflict" }, @@ -12,6 +29,10 @@ }, "spelling": { "type": "spelling" + }, + "text": { + "type": "text", + "text.max-line-length": 80 } } }