Skip to content

Commit

Permalink
Add linting (#396)
Browse files Browse the repository at this point in the history
* Add linting

* Alphabetize links
  • Loading branch information
poteto committed Mar 19, 2017
1 parent 1124362 commit 0dcf177
Show file tree
Hide file tree
Showing 7 changed files with 1,756 additions and 57 deletions.
12 changes: 12 additions & 0 deletions .gitignore
@@ -0,0 +1,12 @@
# Node build artifacts
node_modules
npm-debug.log

# Local development
*.env
*.dev
.DS_Store

# Docker
Dockerfile
docker-compose.yml
19 changes: 19 additions & 0 deletions .travis.yml
@@ -0,0 +1,19 @@
---
language: node_js
node_js:
- "6"

sudo: false

cache:
yarn: true

before_install:
- curl -o- -L https://yarnpkg.com/install.sh | bash
- export PATH=$HOME/.yarn/bin:$PATH

install:
- yarn install

script:
- yarn test
21 changes: 21 additions & 0 deletions LICENSE.md
@@ -0,0 +1,21 @@
MIT License

Copyright (c) 2017 Lauren Elizabeth Tan

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
116 changes: 59 additions & 57 deletions README.md

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions index.js
@@ -0,0 +1 @@
module.exports = {};
38 changes: 38 additions & 0 deletions package.json
@@ -0,0 +1,38 @@
{
"name": "hiring-without-whiteboards",
"version": "0.1.0",
"description": "Companies that don't have a broken hiring process",
"main": "index.js",
"engines": {
"node": "7.x"
},
"scripts": {
"test": "node_modules/remark-cli/cli.js . -f"
},
"repository": {
"type": "git",
"url": "git+https://github.com/poteto/hiring-without-whiteboards.git"
},
"keywords": [
"hiring"
],
"author": "Lauren Tan <arr@sugarpirate.com> (http://www.sugarpirate.com)",
"license": "MIT",
"homepage": "https://github.com/poteto/hiring-without-whiteboards#readme",
"dependencies": {
"remark-cli": "^3.0.0",
"remark-lint": "^6.0.0",
"remark-lint-alphabetize-lists": "^2.0.0",
"remark-preset-lint-recommended": "^2.0.0"
},
"remarkConfig": {
"plugins": [
"remark-preset-lint-recommended",
"lint-alphabetize-lists",
[
"remark-lint-list-item-indent",
false
]
]
}
}

0 comments on commit 0dcf177

Please sign in to comment.