.arclint: more rules, exclusions

Summary:
Probably standard changes (tm) at this point.

Signed-off-by: Yongmin Hong <revi@omglol.email>

Test Plan: `arc lint`

Reviewers: O1 revi & automations, revi

Reviewed By: O1 revi & automations, revi

Differential Revision: https://issuetracker.revi.xyz/D79
This commit is contained in:
revi 2024-05-12 19:01:58 +09:00
parent 467eb9b2d1
commit d75d8cf807
Signed by: revi
GPG key ID: 1EB4F6CEEA100E94

View file

@ -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
}
}
}