From d273dc4e5989829215bd2389bc49ee40876d92ba Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Florian=20M=C3=BCllner?= Date: Sun, 20 Oct 2024 23:43:09 +0200 Subject: [PATCH] cleanup: Always use dangling commas in meson.build This is meson's default formatting, and matches what we already do in JS. Part-of: (cherry picked from commit 720933b08e1f1ee9f070633b69b3d760e82d3408) --- data/meson.build | 4 ++-- meson.build | 10 +++++----- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/data/meson.build b/data/meson.build index 8b70f70f..80060c59 100644 --- a/data/meson.build +++ b/data/meson.build @@ -30,7 +30,7 @@ foreach name: session_desktops po_dir: '../po', install: true, install_dir: session_instdir, - type: 'desktop' + type: 'desktop', ) endforeach @@ -47,7 +47,7 @@ configure_file( input: mode_file + '.in', output: mode_file, configuration: mode_conf, - install_dir: modedir + install_dir: modedir, ) classic_override = '00_org.gnome.shell.extensions.classic.gschema.override' diff --git a/meson.build b/meson.build index ac2eaed2..38acbdee 100644 --- a/meson.build +++ b/meson.build @@ -5,7 +5,7 @@ project('gnome-shell-extensions', version: '47.1', meson_version: '>= 1.1.0', - license: 'GPL-2.0-or-later' + license: 'GPL-2.0-or-later', ) gettext_domain = meson.project_name() @@ -34,7 +34,7 @@ classic_extensions = [ 'apps-menu', 'places-menu', 'launch-new-instance', - 'window-list' + 'window-list', ] default_extensions = classic_extensions @@ -45,14 +45,14 @@ default_extensions += [ 'status-icons', 'system-monitor', 'windowsNavigator', - 'workspace-indicator' + 'workspace-indicator', ] all_extensions = default_extensions all_extensions += [ 'auto-move-windows', 'native-window-placement', - 'user-theme' + 'user-theme', ] enabled_extensions = get_option('enable_extensions') @@ -91,7 +91,7 @@ if classic_mode_enabled subdir('data') meson.add_install_script( 'meson/session-post-install.py', - join_paths(get_option('prefix'), datadir) + join_paths(get_option('prefix'), datadir), ) endif