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.30810.1677694794660530848 for ; Wed, 01 Mar 2023 10:19:54 -0800 Authentication-Results: mx.groups.io; dkim=fail reason="signature has expired" header.i=@bsdio.com header.s=fm2 header.b=Livp5vvN; spf=pass (domain: bsdio.com, ip: 66.111.4.26, mailfrom: rebecca@bsdio.com) Received: from compute4.internal (compute4.nyi.internal [10.202.2.44]) by mailout.nyi.internal (Postfix) with ESMTP id F22355C0088; Wed, 1 Mar 2023 13:19:53 -0500 (EST) Received: from mailfrontend2 ([10.202.2.163]) by compute4.internal (MEProxy); Wed, 01 Mar 2023 13:19:53 -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=1677694793; x=1677781193; bh=6t60btWsJ4yzXoAeNz9m7GPdQ BFMwDQ2SBt/1gcOnUE=; b=Livp5vvNYjPbqL9AM+KzQ4n0turxIWt2COYxW4+ML kVJfSPTUl7moBNHB4SblweRQ1hwEKL64h+RfPtxAmo4JWJaL/xFGHYlPZEzP7u54 zCk0HKIbL2+UBAZwD00mAAHmFr+LXFnH7a1JuDQSTvvKd6l93veiWMAtatevZXig 9lo89x63nEMKMhKv68IRQk+TJ0ZZ0gBLyNC1yn93Yum94xu7PBEBdNht5Bc+aoOE mNLVvZhdiwG6fpvBUrJn+OzYjHerzb9yqRTIf+inmx1XRQCT97zGnSygtvh04edR Os6lsdHSnQemZozbP6+O1AvqqG3p2vGMOjPBYei4Np1+A== 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= 1677694793; x=1677781193; bh=6t60btWsJ4yzXoAeNz9m7GPdQBFMwDQ2SBt /1gcOnUE=; b=Yo5bW51CLnayIVyNhgsZWe2GwQIl/EeqKweuDdZF6hKIYupsk0N 50I+URoIV70YCKgyb9GZURAGURoZGSumnde3W+jbhlUgThCO/dv5GmKvMm6QYWh+ lydNOghchicUGBRQXateY5dtz16Hn9B54E0eG2prA7RVzJdIFcAvrIpK4DWEIskd 53mPRGF4aJs0VhwHcMtNVBvqL7ML2wAqiSoshRfNAYQbulQiPfEfhRZ9+Z8fypCQ EGtdPLxkOg/5+McQVY0CjEeWlKoSaojiBtlRQajwJAvHxS3tCQi294dY03YinYuZ piDpNv/W2h8/0gDskGZAfuuDJcHoIAuTSrQ== X-ME-Sender: X-ME-Received: X-ME-Proxy-Cause: gggruggvucftvghtrhhoucdtuddrgedvhedrudelhedguddtfecutefuodetggdotefrod ftvfcurfhrohhfihhlvgemucfhrghsthforghilhdpqfgfvfdpuffrtefokffrpgfnqfgh necuuegrihhlohhuthemuceftddtnecusecvtfgvtghiphhivghnthhsucdlqddutddtmd enucfjughrpefhvfevufffkffoggfgsedtkeertdertddtnecuhfhrohhmpeftvggsvggt tggrucevrhgrnhcuoehrvggsvggttggrsegsshguihhordgtohhmqeenucggtffrrghtth gvrhhnpefftddthfejffekffehgeffledthfevjeekkefgheevveegvdeflefgudduheeh hfenucffohhmrghinhepvgguihhtohhrtghonhhfihhgrdhorhhgnecuvehluhhsthgvrh fuihiivgeptdenucfrrghrrghmpehmrghilhhfrhhomheprhgvsggvtggtrgessghsughi ohdrtghomh X-ME-Proxy: Feedback-ID: i5b994698:Fastmail Received: by mail.messagingengine.com (Postfix) with ESMTPA; Wed, 1 Mar 2023 13:19:52 -0500 (EST) From: "Rebecca Cran" To: devel@edk2.groups.io, Andrew Fish , Leif Lindholm , Michael D Kinney , Ard Biesheuvel Cc: Rebecca Cran Subject: [PATCH v2 1/1] Add a .editorconfig file to tell editors basic formatting details Date: Wed, 1 Mar 2023 11:19:50 -0700 Message-Id: <20230301181950.46543-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 | 31 ++++++++++++++++++++ 1 file changed, 31 insertions(+) diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 000000000000..587d5bbaa884 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,31 @@ +# EditorConfig file: https://EditorConfig.org + +root = true + +[*] +charset = latin1 +end_of_line = crlf +indent_style = space +indent_size = 2 +insert_final_newline = true +trim_trailing_whitespace = true + +[*.py] +charset = utf-8 +indent_style = space +indent_size = 4 + +[*.sh] +end_of_line = lf + +[.gitattributes] +end_of_line = lf + +[.mailmap] +charset = utf-8 + +[Maintainers.txt] +charset = utf-8 + +[Makefile,GNUmakefile] +indent_style = tab -- 2.37.1 (Apple Git-137.1)