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