Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
55 changes: 27 additions & 28 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
# EditorConfig is awesome: http://EditorConfig.org
# top-most EditorConfig file
root = true

# Unix-style newlines with a newline ending every file
[*]
Expand All @@ -9,46 +10,44 @@ indent_size = 4
insert_final_newline = true
trim_trailing_whitespace = true

[*.{ts,js}]
indent_style = space
# JS files
[*.js]
indent_size = 2

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

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

# package.json
# .travis.yml
# bower.json
[{package.json,.travis.yml,bower.json,composer.json}]
indent_style = space
[package.json]
indent_size = 2

# TypoScript
[{*.typoscript,*.tsconfig,setup.txt,constants.txt,ext_typoscript_setup.txt,ext_typoscript_constants.txt,ext_conf_template.txt}]
indent_style = space
# ReST files
[{*.rst,*.rst.txt}]
indent_size = 4
max_line_length = 80

# SQL files
[*.sql]
indent_style = tab
indent_size = 2

# XML-Files
[{*.xml,*.xlf}]
indent_style = space
# TypoScript files
[*.{typoscript,tsconfig}]
indent_size = 2

# SQL-Files
[*.sql]
indent_style = tab
# YAML files
[{*.yml,*.yaml}]
indent_size = 2

# XLF files
[*.xlf]
indent_size = 2

# ChangeLog files
[{ChangeLog,ChangeLog.txt}]
# .htaccess
[.htaccess]
indent_style = tab

# NEON-Files
[*.neon]
indent_size = 2
# Markdown files
[*.md]
max_line_length = 80
10 changes: 3 additions & 7 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -1,13 +1,9 @@
/.Build/ export-ignore
/Build/ export-ignore
/Tests/ export-ignore
/.editorconfig export-ignore
/.gitattributes export-ignore
/.github/ export-ignore
/.gitignore export-ignore
/.gitlab-ci.yml export-ignore
/.scrutinizer export-ignore
/.styleci.yml export-ignore
/.travis.yml export-ignore
/.php_cs.dist export-ignore
/.php-cs-fixer.php export-ignore
/,phpstan.neon export-ignore
/phive.xml export-ignore
/tools/ export-ignore binary
32 changes: 32 additions & 0 deletions .github/ISSUE_TEMPLATE/bug.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
---
name: Bug
about: Something is broken.
title: ''
type: bug
assignees: ''

---

## Summary

(one or two sentences summarizing the problem)

## Steps to reproduce the problem

1. …
2. …
3. …
4. …

## Actual behavior

(A description of the faulty behavior you're seeing. Add error messages or
screenshot if possible/helpful.)

## Expected behaviour

(what you expect to happen instead)

## Additional information

(additional information that might help understand and fix this bug)
21 changes: 21 additions & 0 deletions .github/ISSUE_TEMPLATE/feature.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
---
name: Feature
about: We would like to have something new.
title: ''
type: feature
assignees: ''

---

## Story

As …, I want …, because ….

## Acceptance criteria

- [ ] …
- [ ] …

## Additional information

(additional information that might help understand and implement this feature)
21 changes: 21 additions & 0 deletions .github/ISSUE_TEMPLATE/task.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
---
name: Task
about: Something is to be done, and it is neither a bug nor a new feature.
title: ''
type: task
assignees: ''

---

## Story

As …, I want …, because ….

## Acceptance criteria

- [ ] …
- [ ] …

## Additional information

(additional information that might help understand and implement this task)
Loading
Loading