Merge pull request #15 from irshadpc/master
Added travis CI for clean readme and valid urls
This commit is contained in:
commit
f8073d6bbe
9
.editorconfig
Normal file
9
.editorconfig
Normal 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
2
.gitattributes
vendored
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
* text=auto
|
||||||
|
readme.md merge=union
|
21
.travis.yml
Normal file
21
.travis.yml
Normal 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
48
package.json
Normal 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
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user