sandbox/.arclint
Yongmin Hong d75d8cf807
.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
2024-05-12 19:02:50 +09:00

38 lines
623 B
Text

{
"exclude": [
"(^package-lock.json$)"
],
"linters": {
"chmod": {
"type": "chmod"
},
"filename": {
"type": "filename"
},
"json": {
"type": "json",
"include": [
"(\\.arcconfig$)",
"(\\.arclint$)",
"(\\.json$)"
]
},
"merge-conflict": {
"type": "merge-conflict"
},
"nolint": {
"type": "nolint"
},
"PHP Error Check": {
"type": "php",
"include": "(\\.php$)"
},
"spelling": {
"type": "spelling"
},
"text": {
"type": "text",
"text.max-line-length": 80
}
}
}