2024-05-02 18:23:44 +09:00
|
|
|
{
|
2024-08-01 18:53:41 +09:00
|
|
|
"exclude": ["(^node_modules/)", "(^pnpm-lock.yaml$)"],
|
2024-05-02 18:23:44 +09:00
|
|
|
"linters": {
|
2024-05-12 19:01:58 +09:00
|
|
|
"chmod": {
|
|
|
|
"type": "chmod"
|
|
|
|
},
|
2024-06-08 19:02:00 +09:00
|
|
|
"css": {
|
|
|
|
"type": "csslint",
|
|
|
|
"include": "(\\.css$)"
|
|
|
|
},
|
|
|
|
"generated": {
|
|
|
|
"type": "generated"
|
|
|
|
},
|
|
|
|
"jshint": {
|
|
|
|
"type": "jshint",
|
2024-06-14 17:21:12 +09:00
|
|
|
"include": ["(\\.cjs$)", "(\\.js$)", "(\\.mjs$)"],
|
2024-06-08 19:05:22 +09:00
|
|
|
"jshint.jshintrc": ".jshint.json"
|
2024-06-08 19:02:00 +09:00
|
|
|
},
|
2024-05-12 19:01:58 +09:00
|
|
|
"json": {
|
|
|
|
"type": "json",
|
2024-06-19 14:37:53 +09:00
|
|
|
"include": ["(^\\.arcconfig$)", "(^\\.arclint$)", "(\\.json$)"],
|
2024-06-20 14:29:13 +09:00
|
|
|
"exclude": ["(^.vscode/*.json$)", "(^tsconfig.json$)"]
|
2024-05-12 19:01:58 +09:00
|
|
|
},
|
2024-05-04 17:22:21 +09:00
|
|
|
"merge-conflict": {
|
|
|
|
"type": "merge-conflict"
|
|
|
|
},
|
|
|
|
"nolint": {
|
|
|
|
"type": "nolint"
|
|
|
|
},
|
2024-05-02 18:23:44 +09:00
|
|
|
"PHP Error Check": {
|
2024-05-04 17:22:21 +09:00
|
|
|
"type": "php",
|
|
|
|
"include": "(\\.php$)"
|
|
|
|
},
|
|
|
|
"spelling": {
|
|
|
|
"type": "spelling"
|
2024-05-12 19:01:58 +09:00
|
|
|
},
|
|
|
|
"text": {
|
|
|
|
"type": "text",
|
2024-06-18 18:42:33 +09:00
|
|
|
"exclude": ["(^.gitignore$)", "(\\.md)", "(\\.php)"],
|
2024-05-13 20:02:10 +09:00
|
|
|
"text.max-line-length": 80,
|
|
|
|
"severity": {
|
2024-06-08 19:02:00 +09:00
|
|
|
"1": "autofix",
|
2024-05-22 19:11:36 +00:00
|
|
|
"2": "advice",
|
2024-05-23 16:05:31 +09:00
|
|
|
"3": "advice",
|
2024-05-22 19:11:36 +00:00
|
|
|
"5": "disabled"
|
2024-05-13 20:02:10 +09:00
|
|
|
}
|
2024-06-08 19:02:00 +09:00
|
|
|
},
|
2024-06-18 18:42:33 +09:00
|
|
|
"text-markdown": {
|
2024-06-08 19:02:00 +09:00
|
|
|
"type": "text",
|
2024-06-14 17:21:12 +09:00
|
|
|
"include": ["(^.gitignore$)", "(\\.md)"],
|
2024-06-08 19:02:00 +09:00
|
|
|
"severity": {
|
|
|
|
"1": "autofix",
|
|
|
|
"2": "advice",
|
|
|
|
"3": "disabled",
|
|
|
|
"5": "disabled"
|
|
|
|
}
|
2024-06-16 14:43:28 +09:00
|
|
|
},
|
2024-06-18 18:42:33 +09:00
|
|
|
"text-php": {
|
|
|
|
"type": "text",
|
2024-06-20 14:29:13 +09:00
|
|
|
"include": ["(\\.php)"],
|
2024-06-18 18:42:33 +09:00
|
|
|
"text.max-line-length": 80,
|
|
|
|
"severity": {
|
|
|
|
"1": "autofix",
|
|
|
|
"2": "disabled",
|
|
|
|
"3": "advice",
|
|
|
|
"5": "disabled"
|
|
|
|
}
|
|
|
|
},
|
2024-06-16 14:43:28 +09:00
|
|
|
"yaml lint": {
|
|
|
|
"type": "yamllint",
|
|
|
|
"include": ["(\\.yaml$)", "(\\.yml$)", "(^.yamllint$)"]
|
2024-05-02 18:23:44 +09:00
|
|
|
}
|
|
|
|
}
|
2024-05-04 17:22:21 +09:00
|
|
|
}
|