Skip to content
This repository has been archived by the owner on Apr 30, 2024. It is now read-only.

Commit

Permalink
Merge pull request #2 from 21TORR/next
Browse files Browse the repository at this point in the history
Use tabs for indentation
  • Loading branch information
apfelbox authored Sep 17, 2020
2 parents 79db3e9 + 9bd84e4 commit eabca39
Show file tree
Hide file tree
Showing 5 changed files with 363 additions and 264 deletions.
92 changes: 92 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,92 @@
# EditorConfig is awesome: http://EditorConfig.org

# top-most EditorConfig file
root = true
charset = utf-8

# Get rid of whitespace to avoid diffs with a bunch of EOL changes
trim_trailing_whitespace = true

# Unix-style newlines with a newline ending every file
[*]
end_of_line = lf
insert_final_newline = true

# CSS-Files
[*.css]
indent_style = tab

# HTML-Files
[*.html]
indent_style = tab

# TXT-Files
[*.txt]
indent_style = tab

# TMPL-Files
[*.tmpl]
indent_style = tab

# LESS-Files
[*.less]
indent_style = tab

# SCSS-Files
[*.scss]
indent_style = tab

# SASS-Files
[*.sass]
indent_style = tab

# JS-Files
[*.js]
indent_style = tab

# JSON-Files
[*.json]
indent_style = tab

# YML-Files
[*.yml]
indent_style = tab

# Makefile
[Makefile]
indent_style = tab

# PHP-Files
[*.php]
indent_style = tab

# ReST-Files
[*.rst]
indent_style = space
indent_size = 3

# MD-Files
[*.md]
indent_style = space
indent_size = 4

# .travis.yml
[.travis.yml]
indent_style = tab

# TypeScript
[*.ts]
indent_style = tab

# TypoScript
[*.ts2]
indent_style = space
indent_size = 2

# XLF-Files
[*.xlf]
indent_style = tab

# SQL-Files
[*.sql]
indent_style = tab
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,4 @@ jobs:
- name: Composer Normalize
uses: "docker://ergebnis/composer-normalize-action:latest"
with:
args: "--indent-size 4 --indent-style space --dry-run"
args: "--indent-style tab --indent-size 1 --dry-run"
Loading

0 comments on commit eabca39

Please sign in to comment.