From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from out2-smtp.messagingengine.com (out2-smtp.messagingengine.com [66.111.4.26]) by mx.groups.io with SMTP id smtpd.web10.82643.1677469629051555478 for ; Sun, 26 Feb 2023 19:47:09 -0800 Authentication-Results: mx.groups.io; dkim=fail reason="signature has expired" header.i=@bsdio.com header.s=fm2 header.b=aUb8nD8w; spf=pass (domain: bsdio.com, ip: 66.111.4.26, mailfrom: rebecca@bsdio.com) Received: from compute6.internal (compute6.nyi.internal [10.202.2.47]) by mailout.nyi.internal (Postfix) with ESMTP id 62F185C00F2; Sun, 26 Feb 2023 22:47:08 -0500 (EST) Received: from mailfrontend1 ([10.202.2.162]) by compute6.internal (MEProxy); Sun, 26 Feb 2023 22:47:08 -0500 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=bsdio.com; h=cc :cc:content-transfer-encoding:date:date:from:from:in-reply-to :message-id:mime-version:reply-to:sender:subject:subject:to:to; s=fm2; t=1677469628; x=1677556028; bh=90oiOMKRXtydGGBNu36kirY9K 93OwtplCPJo1eps6p0=; b=aUb8nD8whWqouro3U7mxjsaNdTeoTTUlSDb21dG54 5NpiI+/qhC5C20v0aFX76F1eTzktnEOEsczXAejOexRVNSbS9BO1RjvlCYmTLR4n gHm7PMdGzIfHdG3lOi8HamMNdCtWgkQWKbmeAmFUFsAZlDf43Xw9VJgwVIqX2Cez ni7aLbQbn/8XyV1tiJHp0NDuyFS/0X8DQYlN9N+/bnHBRiN8qeMPfrkgvP1Xv1yE VIAAF8uPvaJpKnCvTY5TTeEY9A3SiIjM9zVTSaiSlzCjmWPNlvBEniUrXzIH43ot Dg1EsonsquXYFDPFxfsi67XPT8KdOAbUFk8dVkanhbZ0w== DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d= messagingengine.com; h=cc:cc:content-transfer-encoding:date:date :feedback-id:feedback-id:from:from:in-reply-to:message-id :mime-version:reply-to:sender:subject:subject:to:to:x-me-proxy :x-me-proxy:x-me-sender:x-me-sender:x-sasl-enc; s=fm1; t= 1677469628; x=1677556028; bh=90oiOMKRXtydGGBNu36kirY9K93OwtplCPJ o1eps6p0=; b=gsahVUNIQ2LHhcuvXjF8lmd6iChhfdYJcMvvzfobefyeqHRG+1H PJZrvIKEw6a6ubphyIGngTwvUx5EsWJaeF3MdpslkI9c3LGqJoAAh1PL3cuUMO9z Ou7BfG0yd9kmBorvyenfRhjrDPbvQE/Npf7SVkq3ICOBfby1UdEvAaN/Uo0m2m5q IYLEDVrgQIP1JsDASZDlziJBKDKxs6AZGV9Mk7DmXo4RmzRb+8vyAT103xuyGJGp JFdeWQcHAk9MzsVZGPE+SvXshSYy5paGYcbzrI6ihtqt0LVbE4ob5X7VfjkhQmJJ SgdcNZ3zz7lSfy8TKDqoL3QXVitNhMsGAcg== X-ME-Sender: X-ME-Received: X-ME-Proxy-Cause: gggruggvucftvghtrhhoucdtuddrgedvhedrudekledgiedtucetufdoteggodetrfdotf fvucfrrhhofhhilhgvmecuhfgrshhtofgrihhlpdfqfgfvpdfurfetoffkrfgpnffqhgen uceurghilhhouhhtmecufedttdenucesvcftvggtihhpihgvnhhtshculddquddttddmne cujfgurhephffvvefufffkofgggfestdekredtredttdenucfhrhhomheptfgvsggvtggt rgcuvehrrghnuceorhgvsggvtggtrgessghsughiohdrtghomheqnecuggftrfgrthhtvg hrnhepffdttdfhjeffkeffheegffeltdfhveejkeekgfehveevgedvfeelgfduudehhefh necuffhomhgrihhnpegvughithhorhgtohhnfhhighdrohhrghenucevlhhushhtvghruf hiiigvpedtnecurfgrrhgrmhepmhgrihhlfhhrohhmpehrvggsvggttggrsegsshguihho rdgtohhm X-ME-Proxy: Feedback-ID: i5b994698:Fastmail Received: by mail.messagingengine.com (Postfix) with ESMTPA; Sun, 26 Feb 2023 22:47:07 -0500 (EST) From: "Rebecca Cran" To: devel@edk2.groups.io, Andrew Fish , Leif Lindholm , Michael D Kinney Cc: Rebecca Cran Subject: [PATCH 1/1] Add a .editorconfig file to tell editors basic formatting details Date: Sun, 26 Feb 2023 20:47:02 -0700 Message-Id: <20230227034702.82215-1-rebecca@bsdio.com> X-Mailer: git-send-email 2.37.1 (Apple Git-137.1) MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Add a .editorconfig file which editors can use for basic formatting details of files, such as tabs/spaces, line endings etc. Signed-off-by: Rebecca Cran --- .editorconfig | 21 ++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 000000000000..f2651d7ad871 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,21 @@ +# EditorConfig file: https://EditorConfig.org + +root = true + +[*] +charset = latin1 +end_of_line = crlf +insert_final_newline = true +trim_trailing_whitespace = true + +[*.py] +charset = utf-8 +indent_style = space +indent_size = 4 + +[Makefile,GNUmakefile] +indent_style = tab + +[*.{c,h,cpp,cc}] +indent_style = space +indent_size = 2 -- 2.37.1 (Apple Git-137.1)