Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added travis CI for clean readme and valid urls #15

Merged
merged 5 commits into from
Dec 1, 2017
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
root = true

[*]
indent_style = spaces
indent_size = 2
end_of_line = lf
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true
2 changes: 2 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
* text=auto
readme.md merge=union
21 changes: 21 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
sudo: false

language: node_js

node_js:
- 8

cache:
directories:
- node_modules

install:
- yarn install

script:
- yarn test

notifications:
email:
on_success: never
on_failure: change
48 changes: 48 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
{
"name": "reverse-engineering",
"version": "1.0.0",
"description": "A curated list of awesome reversing resources",
"main": "index.js",
"scripts": {
"test": "remark README.md -f"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wtsxDev/reverse-engineering.git"
},
"keywords": [
"reverse-engineering",
"engineering",
"reverse"
],
"author": "wtsxDev",
"license": "",
"bugs": {
"url": "https://github.com/wtsxDev/reverse-engineering/issues"
},
"homepage": "https://github.com/wtsxDev/reverse-engineering#readme",
"dependencies": {
"remark": "^8.0.0",
"remark-cli": "^4.0.0",
"remark-lint": "^6.0.0",
"remark-lint-alphabetize-lists": "^2.0.0",
"remark-lint-are-links-valid-alive": "^0.2.1",
"remark-lint-are-links-valid-duplicate": "^0.2.1",
"remark-preset-lint-recommended": "^3.0.0"
},
"remarkConfig": {
"plugins": [
"remark-preset-lint-recommended",
[
"remark-lint-list-item-indent",
"space"
],
"remark-lint-alphabetize-lists",
"remark-lint-are-links-valid-duplicate",
"remark-lint-are-links-valid-alive"
],
"settings": {
"commonmark": true
}
}
}