Skip to content

Commit d4e8257

Browse files
author
Husny Ahamed
committed
feat(makeitrun): Fixed to make it runnable.
Updated ts configrations to run this in 2021. Added script to run only o-1 complexity algo benchmark. Fixed require statements. Added linting: Disabled all rules at the moment Will add rules one by one for each following commits
1 parent 0288810 commit d4e8257

16 files changed

+2864
-81
lines changed

.eslintrc.js

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
const NONE = 0;
2+
const WARN = 1;
3+
const ERROR = 2;
4+
5+
module.exports = {
6+
root: true,
7+
env: {
8+
node: true,
9+
es2020: true,
10+
},
11+
parser: '@typescript-eslint/parser',
12+
plugins: ['@typescript-eslint', 'prettier'],
13+
extends: [],
14+
rules: {},
15+
};

.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -49,3 +49,5 @@ jspm_packages
4949
.yarn-integrity
5050

5151
src/*.js
52+
53+
dist

0 commit comments

Comments
 (0)