Merge pull request #15 from irshadpc/master

Added travis CI for clean readme and valid urls
This commit is contained in:
KaliTut 2017-12-01 22:49:20 +02:00 committed by GitHub
commit f8073d6bbe
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 80 additions and 0 deletions

9
.editorconfig Normal file
View File

@ -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
.gitattributes vendored Normal file
View File

@ -0,0 +1,2 @@
* text=auto
readme.md merge=union

21
.travis.yml Normal file
View File

@ -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
package.json Normal file
View File

@ -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
}
}
}