initial commit, lesson 1

This commit is contained in:
andres
2023-06-23 17:50:25 +02:00
parent e20bdb8eef
commit e190c8c698
44 changed files with 3424 additions and 498 deletions

8
.eslintrc.cjs Normal file
View File

@@ -0,0 +1,8 @@
module.exports = {
extends: ['@it-incubator/eslint-config'],
rules: {
'no-console': ['warn', {
allow: ['warn', 'error', 'info']
}]
}
};