Skip to content
This repository was archived by the owner on Jun 24, 2024. It is now read-only.

Commit e36da1c

Browse files
committed
chore: update project setup
1 parent 84c07e2 commit e36da1c

File tree

9 files changed

+4308
-2310
lines changed

9 files changed

+4308
-2310
lines changed

.editorconfig

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
; http://editorconfig.org
2+
3+
root = true
4+
5+
[*]
6+
indent_style = space
7+
indent_size = 4
8+
end_of_line = lf
9+
charset = utf-8
10+
trim_trailing_whitespace = true
11+
insert_final_newline = true
12+
13+
[{*.json,.stylelintrc,.eslintrc,.babelrc}]
14+
indent_size = 2

.eslintignore

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

.eslintrc

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,11 @@
11
{
22
"root": true,
3-
"extends": [
4-
"finn",
5-
"finn/node"
6-
]
7-
}
3+
"extends": ["finn", "finn/node", "finn-prettier"],
4+
"parserOptions": {
5+
"ecmaVersion": 2017
6+
},
7+
"env": {
8+
"node": true,
9+
"jest": true
10+
}
11+
}

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,3 +7,4 @@ tmp/**/*
77
*.iml
88
*.log
99
.vscode
10+
coverage

.travis.yml

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,15 @@
11
language: node_js
2-
32
node_js:
4-
- "8"
5-
- "6"
6-
3+
- '9'
4+
- '8'
75
script:
86
- npm test
97
- npm run lint
8+
cache:
9+
npm: true
10+
directories:
11+
- node_modules
12+
branches:
13+
only:
14+
- master
15+
- /^greenkeeper/.*$/

PULL_REQUEST_TEMPLATE

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
## JIRA Issue
2+
[COREWEB-](https://jira.finn.no/browse/COREWEB-)
3+
4+
## Status
5+
**READY/IN DEVELOPMENT/HOLD**
6+
7+
## Description
8+
<!-- A few sentences describing the overall goals of the pull request's commits. -->
9+
10+
## Todos
11+
- [ ] Tests
12+
- [ ] Documentation
13+
14+
## Deploy Notes
15+
<!-- Notes regarding deployment of the contained body of work. These should note any
16+
db migrations, etc. -->
17+
18+
## Related PRs
19+
* None

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
# asset-pipe-dev-middleware
22

3-
[![Greenkeeper badge](https://badges.greenkeeper.io/asset-pipe/asset-pipe-dev-middleware.svg)](https://greenkeeper.io/)
3+
[![Greenkeeper badge](https://badges.greenkeeper.io/asset-pipe/asset-pipe-dev-middleware.svg)](https://greenkeeper.io/)

0 commit comments

Comments
 (0)