Skip to content

[ADD] Bltzz solution incl. Unit tests and style checks #250

New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Open
wants to merge 15 commits into
base: master
Choose a base branch
from
21 changes: 21 additions & 0 deletions .eslintrc.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
module.exports = {
"extends": "airbnb-base",
"env": {
"node":true,
"mocha": true,
"es6": true,
},
"globals": {
"expect": true,
"sinon": true,
},
"plugins": [
"import"
],
"rules": {
"no-underscore-dangle": 0,
},
"parserOptions": {
"ecmaVersion": 13,
},
};
Loading