1
0
Fork 0
mirror of https://we.phorge.it/source/arcanist.git synced 2024-09-19 16:38:51 +02:00
phorge-arcanist/resources/arclint/cornucopia.arclint.example

53 lines
948 B
Text
Raw Permalink Normal View History

{
"linters": {
"pep8": {
"type": "pep8",
"include": "(\\.py$)",
"exclude": "(^exclude.py)",
"severity": {
"E401": "warning"
}
},
"flake8": {
"type": "flake8",
"include": "(\\.py$)",
"exclude": "(^exclude\\.py)",
"severity": {
"E901": "advice"
}
},
"csslint": {
"type": "csslint",
"include": "(\\.css$)"
},
"text": {
"type": "text",
"include": "(\\.txt$)"
},
"ruby": {
"type": "ruby",
"include": "(\\.rb$)"
},
"filename": {
"type": "filename"
},
"spelling": {
"type": "spelling"
},
"nolint": {
"type": "nolint"
},
"generated": {
"type": "generated"
},
"phpcs": {
"type": "phpcs",
"include": "(\\.php)",
"severity.rules": {
"(^PHPCS\\.E\\.)": "warning",
"(^PHPCS\\.W\\.)": "advice"
}
}
}
}