From 299d03bf7ad717a85e60931a9ea67405ae198986 Mon Sep 17 00:00:00 2001 From: Lev Bishop <18673315+levbishop@users.noreply.github.com> Date: Mon, 31 Jan 2022 15:12:23 -0500 Subject: [PATCH] Add .editorconfig (#6033) * Add an editorconfig file * Disable CRLF for make.bat * Update .editorconfig Co-authored-by: Luciano Bello Co-authored-by: Luciano Bello Co-authored-by: mergify[bot] <37929162+mergify[bot]@users.noreply.github.com> --- .editorconfig | 51 +++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 51 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000000..75365d0cad --- /dev/null +++ b/.editorconfig @@ -0,0 +1,51 @@ +# This code is part of Qiskit. +# +# (C) Copyright IBM 2017, 2021. +# +# This code is licensed under the Apache License, Version 2.0. You may +# obtain a copy of this license in the LICENSE.txt file in the root directory +# of this source tree or at http://www.apache.org/licenses/LICENSE-2.0. +# +# Any modifications or derivative works of this code must retain this +# copyright notice, and modified files need to carry a notice indicating +# that they have been altered from the originals. + +# EditorConfig sets project-wide editor defaults: https://EditorConfig.org + +# top-most EditorConfig file, stop looking higher in the tree +root = true + +# Default settings can be overidden by editorconfig file in a subdir +# or by a specific glob later in this file +[*] +end_of_line = lf +insert_final_newline = true +charset = utf-8 +indent_style = space +trim_trailing_whitespace = true + +# Python +[*.py] +indent_size = 4 + +# Javascript +[*.{js,json}] +indent_style = space +indent_size = 2 + +## Windows files +# [*.bat] +# end_of_line = crlf + +# Makefile +[Makefile] +indent_style = tab + +# Markdown +[*.md] +# trailing whitespace is used for
in md (yuck) +trim_trailing_whitespace = false + +# YAML +[*.{yaml,yml}] +indent_size = 2