Skip to content

Commit

Permalink
EditorConfig
Browse files Browse the repository at this point in the history
Added the EditorConfig (1) file to define and maintain consistent coding
styles between different editors and IDEs.

References:
  (1) https://editorconfig.org

Closes GH-11
  • Loading branch information
arcticicestudio committed Nov 15, 2018
1 parent 05ded0c commit 4fa30ce
Show file tree
Hide file tree
Showing 2 changed files with 32 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
# Copyright (C) 2018-present Arctic Ice Studio <development@arcticicestudio.com>
# Copyright (C) 2018-present Sven Greb <development@svengreb.de>
#
# Project: Nord Docs
# Repository: https://github.com/arcticicestudio/nord-docs
# License: MIT

# +--------------------+
# + Base Configuration +
# +--------------------+
[*]
charset = utf-8
end_of_line = lf
indent_size = 2
indent_style = space
insert_final_newline = true
max_line_length = 120
trim_trailing_whitespace = true

# +-----------+
# + Languages +
# +-----------+
# +--- Markdown/MDX ---+
[*.{md,mdx}]
trim_trailing_whitespace = false
7 changes: 7 additions & 0 deletions .github/CODEOWNERS
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
# Copyright (C) 2018-present Arctic Ice Studio <development@arcticicestudio.com>
# Copyright (C) 2018-present Sven Greb <development@svengreb.de>
#
# Project: Nord Docs
# Repository: https://github.com/arcticicestudio/nord-docs
# License: MIT

# Configuration for the GitHub feature to automatically request reviews from the code owners when a pull request
# changes any owned files.
#
Expand Down

0 comments on commit 4fa30ce

Please sign in to comment.