Add EditorConfig for JSON files

This commit is contained in:
David Hrdlička
2022-02-19 12:59:30 +01:00
committed by Jasmine Iwanek
parent 649a6ac5b2
commit a625f37237
2 changed files with 37 additions and 33 deletions

View File

@@ -32,3 +32,7 @@ indent_size = 4
[*.cmake] [*.cmake]
indent_style = space indent_style = space
indent_size = 4 indent_size = 4
[*.json]
indent_style = space
indent_size = 4

View File

@@ -1,35 +1,35 @@
{ {
"name": "86box", "name": "86box",
"version-string": "3.1", "version-string": "3.1",
"homepage": "https://86box.net/", "homepage": "https://86box.net/",
"documentation": "http://86box.readthedocs.io/", "documentation": "http://86box.readthedocs.io/",
"license": "GPL-2.0-or-later", "license": "GPL-2.0-or-later",
"dependencies": [ "dependencies": [
"freetype", "freetype",
"libpng", "libpng",
"openal-soft", "openal-soft",
"sdl2", "sdl2",
"rtmidi" "rtmidi"
], ],
"features": { "features": {
"qt-ui": { "qt-ui": {
"description": "Qt User Interface", "description": "Qt User Interface",
"dependencies": [ "dependencies": [
"qt5-base", "qt5-base",
"qt5-translations" "qt5-translations"
] ]
}, },
"munt": { "munt": {
"description": "Roland MT-32 emulation", "description": "Roland MT-32 emulation",
"dependencies": [ "dependencies": [
"libmt32emu" "libmt32emu"
] ]
}, },
"slirp": { "slirp": {
"description": "Slirp network support", "description": "Slirp network support",
"dependencies": [ "dependencies": [
"libslirp" "libslirp"
] ]
} }
} }
} }