Skip to content

Commit 4226519

Browse files
Merge pull request #71 from htmlacademy/feature/eslint
#66 adds eslint
2 parents 23cae63 + 21a8de2 commit 4226519

File tree

28 files changed

+3057
-188
lines changed

28 files changed

+3057
-188
lines changed

.eslintrc

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
{
2+
"env": {
3+
"es2022": true,
4+
"node": true
5+
},
6+
"extends": [
7+
"htmlacademy/vanilla"
8+
]
9+
}

index.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
'use strict';
2+
13
const fs = require('fs');
24
const path = require('path');
35

0 commit comments

Comments
 (0)