dots/.arclint
Yongmin Hong c8968ca421
vscode: settings (not the .vscode/)
Summary:
There's `settings sync` native stuff but for visual reference.

Also update `.gitattributes` and `.arclint` to ignore jsonc.

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

Test Plan: Verify this is the same settings as vscode user settings.

Reviewers: O1 revi & automations, revi

Reviewed By: O1 revi & automations, revi

Differential Revision: https://issuetracker.revi.xyz/D381
2024-06-22 18:10:12 +09:00

62 lines
1.3 KiB
JSON

{
"exclude": ["(^package-lock.json$)"],
"linters": {
"chmod": {
"type": "chmod"
},
"Generated": {
"type": "generated"
},
"jshint": {
"type": "jshint",
"include": ["(\\.cjs$)", "(\\.js$)", "(\\.jsx$)", "(\\.mjs$)"],
"jshint.jshintrc": ".jshint.json"
},
"json": {
"type": "json",
"include": [
"(^.arcconfig$)",
"(^.arclint$)",
"(^.arcunit$)",
"(\\.json$)",
"(\\.sublime-settings$)"
],
"exclude": ["(^.vscode/\\.json$)", "(^vscode.json$)"]
},
"merge-conflict": {
"type": "merge-conflict"
},
"nolint": {
"type": "nolint"
},
"spelling": {
"type": "spelling"
},
"text": {
"type": "text",
"exclude": ["(^.gitignore$)", "(\\.md$)"],
"text.max-line-length": 80,
"severity": {
"1": "autofix",
"2": "advice",
"3": "advice",
"5": "disabled"
}
},
"text-markdown": {
"type": "text",
"include": ["(^.gitignore$)", "(\\.md$)"],
"severity": {
"1": "autofix",
"2": "advice",
"3": "disabled",
"5": "disabled"
}
},
"yaml lint": {
"type": "yamllint",
"include": ["(\\.yaml$)", "(\\.yml$)", "(^.yamllint$)"]
}
}
}