From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 34189139694 for ; Sun, 2 Jul 2017 18:10:49 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 973112340AF; Sun, 2 Jul 2017 18:10:48 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 74C372340AF for ; Sun, 2 Jul 2017 18:10:48 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 6140D3417D0 for ; Sun, 2 Jul 2017 18:10:47 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id BBECB747D for ; Sun, 2 Jul 2017 18:10:45 +0000 (UTC) From: "Zac Medico" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Zac Medico" Message-ID: <1499018592.6dcbf921b914be90a052b961dd04d7e90029e893.zmedico@gentoo> Subject: [gentoo-commits] proj/portage:master commit in: / X-VCS-Repository: proj/portage X-VCS-Files: .editorconfig X-VCS-Directories: / X-VCS-Committer: zmedico X-VCS-Committer-Name: Zac Medico X-VCS-Revision: 6dcbf921b914be90a052b961dd04d7e90029e893 X-VCS-Branch: master Date: Sun, 2 Jul 2017 18:10:45 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: a2789406-15a3-4f3e-bf5c-4d637b2d19b4 X-Archives-Hash: e849af53ba661f53a79114ba824e024e commit: 6dcbf921b914be90a052b961dd04d7e90029e893 Author: Zac Medico gentoo org> AuthorDate: Sun Jul 2 17:58:19 2017 +0000 Commit: Zac Medico gentoo org> CommitDate: Sun Jul 2 18:03:12 2017 +0000 URL: https://gitweb.gentoo.org/proj/portage.git/commit/?id=6dcbf921 .editorconfig: set basic defaults .editorconfig | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 000000000..da06fc19f --- /dev/null +++ b/.editorconfig @@ -0,0 +1,14 @@ +# Copyright 2017 Gentoo Foundation + +root = true + +[*] +charset = utf-8 +end_of_line = lf +indent_style = tab +indent_size = 4 +tab_width = 4 +insert_final_newline = true + +[*.{yaml,yml}] +indent_style = space