From patchwork Sat Oct 19 13:16:06 2024 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Robert Mader X-Patchwork-Id: 21702 Return-Path: X-Original-To: parsemail@patchwork.libcamera.org Delivered-To: parsemail@patchwork.libcamera.org Received: from lancelot.ideasonboard.com (lancelot.ideasonboard.com [92.243.16.209]) by patchwork.libcamera.org (Postfix) with ESMTPS id 5B528BD1F1 for ; Sat, 19 Oct 2024 13:17:06 +0000 (UTC) Received: from lancelot.ideasonboard.com (localhost [IPv6:::1]) by lancelot.ideasonboard.com (Postfix) with ESMTP id E83B76538C; Sat, 19 Oct 2024 15:17:04 +0200 (CEST) Authentication-Results: lancelot.ideasonboard.com; dkim=pass (1024-bit key; unprotected) header.d=collabora.com header.i=robert.mader@collabora.com header.b="bIszhp2J"; dkim-atps=neutral Received: from sender4-pp-f112.zoho.com (sender4-pp-f112.zoho.com [136.143.188.112]) by lancelot.ideasonboard.com (Postfix) with ESMTPS id A24A765380 for ; Sat, 19 Oct 2024 15:17:01 +0200 (CEST) ARC-Seal: i=1; a=rsa-sha256; t=1729343817; cv=none; d=zohomail.com; s=zohoarc; b=IlM0U7DSorgoMCDQkybXERaoitXBP96XUY0Sfl57bz30PDSMrXL4O8mmR1gH9gLvImy0ec0KhYNW9Gz9YHpsVMHWDoDFrIuNO/H7XN69gjZKlf4EFQIvT1TokxMEH9tzfMrqRE9uFCLcboRLBxTnxAZE4IP+0KlZmm7U1jbNQ+Y= ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=zohomail.com; s=zohoarc; t=1729343817; h=Content-Transfer-Encoding:Cc:Cc:Date:Date:From:From:MIME-Version:Message-ID:Subject:Subject:To:To:Message-Id:Reply-To; bh=WDrAvPai+UxKlS1r8mKaM9l6UxeUd695uws7SLxcLiw=; b=j1B0U/c/7EZy4JmzT7psXGoshO38BkHHiMZrtExw7ndaSyQPjVOmKXoeG067ConmVY5bYFQGAbiQKf/sQLvAxf/i9uJGx2hIU9eVOzoRtxeBCx3CyNbKUKghzvfbtoGCNspUgUDPLOof2ozNA2hYz7EfTc4D0ni0OMD2RhC4Vj8= ARC-Authentication-Results: i=1; mx.zohomail.com; dkim=pass header.i=collabora.com; spf=pass smtp.mailfrom=robert.mader@collabora.com; dmarc=pass header.from= DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; t=1729343817; s=zohomail; d=collabora.com; i=robert.mader@collabora.com; h=From:From:To:To:Cc:Cc:Subject:Subject:Date:Date:Message-ID:MIME-Version:Content-Transfer-Encoding:Message-Id:Reply-To; bh=WDrAvPai+UxKlS1r8mKaM9l6UxeUd695uws7SLxcLiw=; b=bIszhp2Jpas/mubSnlTsWwPzFJi0m/zD76hwCOelS2LnyDccouWNdpEexWvsQjQg a/SZ7zKYTHpQE9PNWopeCCZptzE9UjSOcRCYlSFRQWIStZGo2z2e2iEQEBWJL9wFAoE +Gx8MI4rSLlyYuA6Ee4ZUZ2y+EQiW6Jp0HecS8CM= Received: by mx.zohomail.com with SMTPS id 1729343816229742.5866802250385; Sat, 19 Oct 2024 06:16:56 -0700 (PDT) From: Robert Mader To: libcamera-devel@lists.libcamera.org Cc: Robert Mader Subject: [PATCH] Add .editorconfig file Date: Sat, 19 Oct 2024 15:16:06 +0200 Message-ID: <20241019131606.56551-1-robert.mader@collabora.com> X-Mailer: git-send-email 2.47.0 MIME-Version: 1.0 X-BeenThere: libcamera-devel@lists.libcamera.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: libcamera-devel-bounces@lists.libcamera.org Sender: "libcamera-devel" To make contributing to libcamera more fun, see https://editorconfig.org/ Signed-off-by: Robert Mader Acked-by: Kieran Bingham --- .editorconfig | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 00000000..4599ce24 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,21 @@ +# SPDX-License-Identifier: CC0-1.0 + +root = true + +[*] +charset = utf-8 +end_of_line = lf +trim_trailing_whitespace = true + +[*.{cpp,h}] +indent_size = 8 +indent_style = tab +insert_final_newline = true + +[*.xml] +indent_size = 2 +indent_style = space + +[meson.build] +indent_size = 2 +indent_style = space \ No newline at end of file