Skip to content

Commit 5f38dfa

Browse files
aklkvJen Weber
authored and
Jen Weber
committed
Feature/automation (#9)
* upgraded packages to the latest versions * fixed repository property * moved guidesmaker-link-checker to dev dependancies * added remark markdown linter, with some presets * adding npm command for md linting, this would help in ci * adding basic travis config, more to come * adding editorconfig * changes to lock file
1 parent 8f4da9a commit 5f38dfa

File tree

4 files changed

+5335
-1804
lines changed

4 files changed

+5335
-1804
lines changed

.editorconfig

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# EditorConfig helps developers define and maintain consistent
2+
# coding styles between different editors and IDEs
3+
# editorconfig.org
4+
5+
root = true
6+
7+
8+
[*]
9+
end_of_line = lf
10+
charset = utf-8
11+
trim_trailing_whitespace = true
12+
insert_final_newline = true
13+
indent_style = space
14+
indent_size = 2
15+
16+
[*.md]
17+
trim_trailing_whitespace = false

.travis.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
---
2+
language: node_js
3+
node_js:
4+
- 6
5+
6+
sudo: false
7+
dist: trusty
8+
9+
cache:
10+
directories:
11+
- $HOME/.npm
12+
13+
before_install:
14+
- npm config set spin false
15+
16+
script:
17+
- npm run lint:md
18+
- npm test

0 commit comments

Comments
 (0)