mirror of
https://github.com/rjNemo/hiring-without-whiteboards
synced 2026-06-12 13:36:39 +00:00
Merge #743
743: Update deps & add trailing space linter r=poteto a=poteto <!-- Thank you for contributing! Pull requests that do not adhere to the format will be rejected. Please ensure you complete the following checkboxes. Please also: - Add one company at a time. - Insert in alphabetical order - Do not sort other listings --> ## Add/Update/Remove <CompanyName> - [ ] I have read the [contributing guidelines](https://github.com/poteto/hiring-without-whiteboards/blob/master/CONTRIBUTING.md) - [ ] I agree to the [Code of Conduct](https://github.com/poteto/hiring-without-whiteboards/blob/master/CODE_OF_CONDUCT.md) - [ ] I have followed the [format](https://github.com/poteto/hiring-without-whiteboards/blob/master/CONTRIBUTING.md#format) prescribed in the contributing guidelines - [ ] (OPTIONAL) In your pull request message, add additional context on the interview process if necessary <!-- Please give additional context about the interview process if necessary. --> Co-authored-by: Lauren Tan <laurent@netflix.com> Co-authored-by: Lauren Tan <poteto@users.noreply.github.com>
This commit is contained in:
commit
b3fb4a3acc
5 changed files with 940 additions and 816 deletions
1
.nvmrc
Normal file
1
.nvmrc
Normal file
|
|
@ -0,0 +1 @@
|
||||||
|
11.10.0
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
---
|
---
|
||||||
language: node_js
|
language: node_js
|
||||||
node_js:
|
node_js:
|
||||||
- "7"
|
- "11"
|
||||||
|
|
||||||
sudo: false
|
sudo: false
|
||||||
|
|
||||||
|
|
|
||||||
18
package.json
18
package.json
|
|
@ -4,7 +4,7 @@
|
||||||
"description": "Companies that don't have a broken hiring process",
|
"description": "Companies that don't have a broken hiring process",
|
||||||
"main": "index.js",
|
"main": "index.js",
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": "7.x"
|
"node": "11.x"
|
||||||
},
|
},
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"test": "node ./node_modules/remark-cli/cli.js README.md -f"
|
"test": "node ./node_modules/remark-cli/cli.js README.md -f"
|
||||||
|
|
@ -20,20 +20,22 @@
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"homepage": "https://github.com/poteto/hiring-without-whiteboards#readme",
|
"homepage": "https://github.com/poteto/hiring-without-whiteboards#readme",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"remark-cli": "^3.0.0",
|
"remark-cli": "^6.0.1",
|
||||||
"remark-lint": "^6.0.0",
|
"remark-lint": "^6.0.4",
|
||||||
"remark-lint-alphabetize-lists": "^2.0.0",
|
"remark-lint-alphabetize-lists": "^2.0.1",
|
||||||
"remark-lint-hiring-without-whiteboards-links": "^0.3.2",
|
"remark-lint-hiring-without-whiteboards-links": "^0.3.2",
|
||||||
"remark-lint-no-tabs": "^1.0.0",
|
"remark-lint-no-tabs": "^1.0.2",
|
||||||
"remark-lint-no-url-trailing-slash": "^3.0.0",
|
"remark-lint-no-trailing-spaces": "^2.0.0",
|
||||||
"remark-lint-unordered-list-marker-style": "^1.0.0",
|
"remark-lint-no-url-trailing-slash": "^3.0.1",
|
||||||
"remark-preset-lint-recommended": "^2.0.0"
|
"remark-lint-unordered-list-marker-style": "^1.0.2",
|
||||||
|
"remark-preset-lint-recommended": "^3.0.2"
|
||||||
},
|
},
|
||||||
"remarkConfig": {
|
"remarkConfig": {
|
||||||
"plugins": [
|
"plugins": [
|
||||||
"lint",
|
"lint",
|
||||||
"remark-preset-lint-recommended",
|
"remark-preset-lint-recommended",
|
||||||
"remark-lint-no-tabs",
|
"remark-lint-no-tabs",
|
||||||
|
"remark-lint-no-trailing-spaces",
|
||||||
"remark-lint-unordered-list-marker-style",
|
"remark-lint-unordered-list-marker-style",
|
||||||
"remark-lint-no-url-trailing-slash",
|
"remark-lint-no-url-trailing-slash",
|
||||||
"remark-lint-hiring-without-whiteboards-links",
|
"remark-lint-hiring-without-whiteboards-links",
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue