1
0
Fork 0
mirror of synced 2024-05-17 11:12:41 +12:00
appwrite/pint.json

22 lines
477 B
JSON
Raw Normal View History

2024-03-07 06:13:43 +13:00
{
"preset": "psr12",
"exclude": [
"./app/sdks",
"./tests/resources/functions",
"./app/console"
2024-03-07 06:19:36 +13:00
],
"rules": {
"array_indentation": true,
"single_import_per_statement": true,
"simplified_null_return": true,
"ordered_imports": {
2024-03-07 06:33:32 +13:00
"sort_algorithm": "alpha",
"imports_order": [
"const",
"class",
"function"
]
2024-03-07 06:19:36 +13:00
}
}
2024-03-07 06:13:43 +13:00
}