indent json according to my personal taste

This commit is contained in:
Paolo Marrone 2024-07-30 15:16:11 +02:00
parent 7302a19c23
commit cc1ecbf678
10 changed files with 33 additions and 32 deletions

View File

@ -1,21 +1,21 @@
{
"android_make": {
"cxxflags": "-I../../../miniaudio",
"keyStore": "keystore.jks",
"keyAlias": "androidkey",
"storePass": "android",
"keyPass": "android",
"sdkDir": "${HOME}/Android/Sdk",
"ndkVersion": "27.0.11902837",
"buildToolsVersion": "35.0.0",
"androidxDir": "${HOME}/Android/androidx",
"kotlinDir": "${HOME}/Android/kotlin",
"androidVersion": "35",
"androidxCoreVersion": "1.13.1",
"androidxLifecycleCommonVersion": "2.8.3",
"androidxVersionedparcelableVersion": "1.2.0",
"kotlinStdlibVersion": "2.0.0",
"kotlinxCoroutinesCoreVersion": "1.8.0",
"kotlinxCoroutinesCoreJVMVersion": "1.8.1"
"cxxflags" : "-I../../../miniaudio",
"keyStore" : "keystore.jks",
"keyAlias" : "androidkey",
"storePass" : "android",
"keyPass" : "android",
"sdkDir" : "${HOME}/Android/Sdk",
"ndkVersion" : "27.0.11902837",
"buildToolsVersion" : "35.0.0",
"androidxDir" : "${HOME}/Android/androidx",
"kotlinDir" : "${HOME}/Android/kotlin",
"androidVersion" : "35",
"androidxCoreVersion" : "1.13.1",
"androidxLifecycleCommonVersion" : "2.8.3",
"androidxVersionedparcelableVersion" : "1.2.0",
"kotlinStdlibVersion" : "2.0.0",
"kotlinxCoroutinesCoreVersion" : "1.8.0",
"kotlinxCoroutinesCoreJVMVersion" : "1.8.1"
}
}

View File

@ -1,5 +1,5 @@
{
"android": {
"javaPackageName": "com.example.tibia_test"
"javaPackageName" : "com.example.tibia_test"
}
}

View File

@ -1,6 +1,6 @@
{
"cmd_make": {
"tinywavDir": "../../../tinywav",
"midiParserDir": "../../../midi-parser"
"tinywavDir" : "../../../tinywav",
"midiParserDir" : "../../../midi-parser"
}
}

View File

@ -1,7 +1,8 @@
{
"company": {
"name": "Example company",
"url": "https://www.example.com/",
"email": "info@example.com"
"name": "Example company",
"url": "https://www.example.com/",
"email": "info@example.com",
"domain": "com.example"
}
}

View File

@ -1,5 +1,5 @@
{
"daisy_seed_make": {
"libdaisyDir": "../../../libDaisy"
"libdaisyDir" : "../../../libDaisy"
}
}

View File

@ -1,5 +1,5 @@
{
"daisy_seed": {
"parameterPins": [ 15, 16, 17, 18, 22 ]
"parameterPins" : [ 15, 16, 17, 18, 22 ]
}
}

View File

@ -1,6 +1,6 @@
{
"ios_make": {
"headerSearchPaths": [ "../../../../../miniaudio" ],
"deploymentTarget": 16.6
"headerSearchPaths" : [ "../../../../../miniaudio" ],
"deploymentTarget" : 16.6
}
}

View File

@ -1,5 +1,5 @@
{
"ios": {
"productBundleIdentifier": "com.example.tibia-test"
"productBundleIdentifier" : "com.example.tibia-test"
}
}

View File

@ -1,6 +1,6 @@
{
"lv2_make": {
"cflags": "$(shell pkg-config --cflags pugl-cairo-0 pugl-0 cairo)",
"ldflags": "$(shell pkg-config --libs pugl-cairo-0 pugl-0 cairo) -Wl,-rpath,$(shell pkg-config --variable=libdir pugl-cairo-0),-rpath,$(shell pkg-config --variable=libdir pugl-0),-rpath,$(shell pkg-config --variable=libdir cairo)"
"cflags" : "$(shell pkg-config --cflags pugl-cairo-0 pugl-0 cairo)",
"ldflags" : "$(shell pkg-config --libs pugl-cairo-0 pugl-0 cairo) -Wl,-rpath,$(shell pkg-config --variable=libdir pugl-cairo-0),-rpath,$(shell pkg-config --variable=libdir pugl-0),-rpath,$(shell pkg-config --variable=libdir cairo)"
}
}

View File

@ -1,6 +1,6 @@
{
"vst3_make": {
"cflags": "-I../../../vst3_c_api $(shell pkg-config --cflags pugl-cairo-0)",
"ldflags": "$(shell pkg-config --libs pugl-cairo-0 pugl-0 cairo) -Wl,-rpath,$(shell pkg-config --variable=libdir pugl-cairo-0),-rpath,$(shell pkg-config --variable=libdir pugl-0),-rpath,$(shell pkg-config --variable=libdir cairo)"
"cflags" : "-I../../../vst3_c_api $(shell pkg-config --cflags pugl-cairo-0)",
"ldflags" : "$(shell pkg-config --libs pugl-cairo-0 pugl-0 cairo) -Wl,-rpath,$(shell pkg-config --variable=libdir pugl-cairo-0),-rpath,$(shell pkg-config --variable=libdir pugl-0),-rpath,$(shell pkg-config --variable=libdir cairo)"
}
}