Skip to content

Commit 9fe90a5

Browse files
committed
chore: scaffold repo
1 parent 9e0381a commit 9fe90a5

File tree

6 files changed

+58
-2
lines changed

6 files changed

+58
-2
lines changed

.editorconfig

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
root = true;
2+
3+
[*]
4+
indent_style = space
5+
indent_size = 2
6+
charset = utf-8
7+
trim_trailing_whitespace = true
8+
insert_final_newline = true

.eslintrc.js

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
module.exports = {
2+
"env": {
3+
"es6": true,
4+
"node": true,
5+
"mocha": true
6+
},
7+
"extends": "eslint:recommended",
8+
"parserOptions": {
9+
"sourceType": "module"
10+
},
11+
"rules": {
12+
"indent": ["error", 2, { "SwitchCase": 1 }],
13+
"quotes": [2, "single"],
14+
"semi": 2
15+
}
16+
};

.gitignore

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
node_modules/
2+
3+
input.js

.npmrc

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
package-lock=false

README.md

+14-2
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,14 @@
1-
# advent-of-code-2018
2-
Advent of Code 2018 Submissions
1+
# Advent of Code 2018 - My Solutions
2+
3+
TBA
4+
5+
## Days
6+
7+
- [Day 1: ?](day-01-?/)
8+
9+
## Running Tests
10+
11+
Each day contains its own set of tests. To run them type `npm test`.
12+
13+
## Visit
14+
- http://adventofcode.com/2018

package.json

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
{
2+
"name": "advent-of-code-2018",
3+
"version": "1.0.0",
4+
"description": "Advent of Code 2018",
5+
"main": "index.js",
6+
"author": "Mario Tacke <[email protected]>",
7+
"license": "MIT",
8+
"scripts": {
9+
"test": "mocha day-*/**/test.js",
10+
"lint": "eslint ."
11+
},
12+
"devDependencies": {
13+
"eslint": "^5.9.0",
14+
"mocha": "^5.2.0"
15+
}
16+
}

0 commit comments

Comments
 (0)