hacker-news-cli/.eslintrc
Robert Webb f5e38cbd70 Added a sample test using supertest, axios, and sinon.
It does not past but I can confirm it does call the api!
2019-02-17 20:20:31 -08:00

26 lines
374 B
Plaintext

{
"extends": ["eslint:recommended"],
"parserOptions": {
"ecmaVersion": 8
},
"globals": {
"after": "readable"
},
"env": {
"es6": true,
"node": true,
"mocha": true
},
"rules": {
"quotes": ["warn", "single"],
"semi": ["error", "never"],
"indent": ["warn", 2],
"no-unused-vars": ["warn"],
"no-console": ["off"],
}
}