mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-09 16:32:39 +01:00
6136964093
Summary: Ref T13588. This configuration value may not be set. Also fix an issue in `bin/storage` and whatever else I hit between now and this diff actually uploading. Also fix a MySQLi report mode difference, beginning in PHP 8.1. Also update a bunch of "static" property usage in Lisk. Test Plan: Ran `bin/files ...` locally under PHP 8.1. Maniphest Tasks: T13588 Differential Revision: https://secure.phabricator.com/D21744
86 lines
1.8 KiB
Text
86 lines
1.8 KiB
Text
{
|
|
"exclude": [
|
|
"(^externals/)",
|
|
"(^webroot/rsrc/externals/(?!javelin/))",
|
|
"(/__tests__/data/)"
|
|
],
|
|
"linters": {
|
|
"chmod": {
|
|
"type": "chmod"
|
|
},
|
|
"filename": {
|
|
"type": "filename"
|
|
},
|
|
"generated": {
|
|
"type": "generated"
|
|
},
|
|
"javelin": {
|
|
"type": "javelin",
|
|
"include": "(\\.js$)",
|
|
"exclude": [
|
|
"(^support/aphlict/)"
|
|
]
|
|
},
|
|
"jshint-browser": {
|
|
"type": "jshint",
|
|
"include": "(\\.js$)",
|
|
"exclude": [
|
|
"(^support/aphlict/server/.*\\.js$)",
|
|
"(^webroot/rsrc/externals/javelin/core/init_node\\.js$)"
|
|
],
|
|
"jshint.jshintrc": "support/lint/browser.jshintrc"
|
|
},
|
|
"jshint-node": {
|
|
"type": "jshint",
|
|
"include": [
|
|
"(^support/aphlict/server/.*\\.js$)",
|
|
"(^webroot/rsrc/externals/javelin/core/init_node\\.js$)"
|
|
],
|
|
"jshint.jshintrc": "support/lint/node.jshintrc"
|
|
},
|
|
"json": {
|
|
"type": "json",
|
|
"include": [
|
|
"(^src/docs/book/.*\\.book$)",
|
|
"(^support/lint/jshintrc$)",
|
|
"(^\\.arcconfig$)",
|
|
"(^\\.arclint$)",
|
|
"(\\.json$)"
|
|
]
|
|
},
|
|
"merge-conflict": {
|
|
"type": "merge-conflict"
|
|
},
|
|
"nolint": {
|
|
"type": "nolint"
|
|
},
|
|
"phutil-library": {
|
|
"type": "phutil-library",
|
|
"include": "(\\.php$)"
|
|
},
|
|
"spelling": {
|
|
"type": "spelling"
|
|
},
|
|
"text": {
|
|
"type": "text",
|
|
"exclude": [
|
|
"(^src/(.*/)?__tests__/[^/]+/.*\\.(txt|json|expect))"
|
|
]
|
|
},
|
|
"text-without-length": {
|
|
"type": "text",
|
|
"include": [
|
|
"(^src/(.*/)?__tests__/[^/]+/.*\\.(txt|json|expect))"
|
|
],
|
|
"severity": {
|
|
"3": "disabled"
|
|
}
|
|
},
|
|
"xhpast": {
|
|
"type": "xhpast",
|
|
"include": "(\\.php$)",
|
|
"standard": "phutil.xhpast",
|
|
"xhpast.php-version": "5.5"
|
|
}
|
|
}
|
|
}
|