Skip to content

Commit 1e356c7

Browse files
committed
feat: initial commit
0 parents  commit 1e356c7

File tree

14 files changed

+4024
-0
lines changed

14 files changed

+4024
-0
lines changed

.editorconfig

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# editorconfig.org
2+
root = true
3+
4+
[*]
5+
indent_size = 2
6+
indent_style = space
7+
end_of_line = lf
8+
charset = utf-8
9+
trim_trailing_whitespace = true
10+
insert_final_newline = true
11+
12+
[*.md]
13+
trim_trailing_whitespace = false

.gitignore

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
node_modules/
2+
npm-debug.log
3+
.env
4+
dist/
5+
web/

.gitmessage

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
2+
3+
#
4+
# All commit messages should follow Angular Commit Message Guidelines:
5+
#
6+
# <type>(<scope>): <subject>
7+
# <BLANK LINE>
8+
# <body>
9+
# <BLANK LINE>
10+
# <footer>
11+
#
12+
# For more info see https://github.com/angular/angular/blob/master/CONTRIBUTING.md#-commit-message-guidelines

.prettierignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
dist/

.prettierrc

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"parser": "typescript",
3+
"singleQuote": true,
4+
"trailingComma": "all",
5+
"semi": false
6+
}

README.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# [Codebreeze](https://codebreeze.fi) website
2+
3+
[![Greenkeeper badge](https://badges.greenkeeper.io/codefreezefi/codebreeze.fi.svg?token=9f0ce8d46ec055d9c898027fa03dbf168da47358b0a7c56d5cf024c227c0a57b&ts=1559900520843)](https://greenkeeper.io/)
4+
[![semantic-release](https://img.shields.io/badge/%20%20%F0%9F%93%A6%F0%9F%9A%80-semantic--release-e10079.svg)](https://github.com/semantic-release/semantic-release)
5+
[![Commitizen friendly](https://img.shields.io/badge/commitizen-friendly-brightgreen.svg)](http://commitizen.github.io/cz-cli/)

commitlint.config.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
module.exports = {extends: ['@commitlint/config-angular']}

0 commit comments

Comments
 (0)