Skip to content

Commit

Permalink
init
Browse files Browse the repository at this point in the history
  • Loading branch information
doichev-kostia committed Jul 18, 2023
0 parents commit 93fd712
Show file tree
Hide file tree
Showing 9 changed files with 1,745 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
root = true

[*]
end_of_line = lf
insert_final_newline = true
charset = utf-8
indent_style = tab
indent_size = 4
max_line_length =80

[*.md]
trim_trailing_whitespace = false

[*.yml]
indent_size = 2

[*.yaml]
indent_size = 2

[*.json]
indent_size = 2
7 changes: 7 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
/node_modules
/build
/dist
/.idea
/.vscode
.DS_Store

1 change: 1 addition & 0 deletions .nvmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
v18.16.1
9 changes: 9 additions & 0 deletions .prettierrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
"useTabs": true,
"tabWidth": 4,
"semi": true,
"printWidth": 80,
"arrowParens": "always",
"endOfLine": "lf",
"singleQuote": false
}
15 changes: 15 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
# Node course template

This is a basic template for your final assignment in the Node course.

It contains some code style configurations and can help you get started with the assignment.

## Getting started

1. Create a new repository on GitHub using this repository as a template.
2. Clone your new repository to your computer.
3. Checkout to the `develop` branch.

## Environment setup

You can check the [environment setup docs](./docs/environment-setup.md) for more information.
1 change: 1 addition & 0 deletions docs/environment-setup.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Environment setup
19 changes: 19 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
{
"name": "node-course-template",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"lint": "standard",
"lint:fix": "standard --fix",
"format": "prettier --write ."
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/node": "18.16.19",
"prettier": "^3.0.0",
"standard": "^17.1.0"
}
}
Loading

0 comments on commit 93fd712

Please sign in to comment.