Skip to content

Commit

Permalink
Add .editorconfig (#6033)
Browse files Browse the repository at this point in the history
* Add an editorconfig file

* Disable CRLF for make.bat

* Update .editorconfig

Co-authored-by: Luciano Bello <bel@zurich.ibm.com>

Co-authored-by: Luciano Bello <bel@zurich.ibm.com>
Co-authored-by: mergify[bot] <37929162+mergify[bot]@users.noreply.github.com>
  • Loading branch information
3 people authored Jan 31, 2022
1 parent 3a4c512 commit 299d03b
Showing 1 changed file with 51 additions and 0 deletions.
51 changes: 51 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -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 <br/> in md (yuck)
trim_trailing_whitespace = false

# YAML
[*.{yaml,yml}]
indent_size = 2

0 comments on commit 299d03b

Please sign in to comment.