Skip to content

Commit

Permalink
feat: Implement ModuleImporter
Browse files Browse the repository at this point in the history
  • Loading branch information
nzakas committed Aug 17, 2022
1 parent 55b3798 commit 3ce4e82
Show file tree
Hide file tree
Showing 14 changed files with 5,334 additions and 0 deletions.
30 changes: 30 additions & 0 deletions .eslintrc.cjs
@@ -0,0 +1,30 @@
module.exports = {
"env": {
"es6": true,
"node": true
},
"extends": "eslint:recommended",
"parserOptions": {
"ecmaVersion": "latest",
"sourceType": "module"
},
"rules": {
"indent": [
"error",
4
],
"linebreak-style": [
"error",
"unix"
],
"quotes": [
"error",
"double"
],
"semi": [
"error",
"always"
],
"no-console": "error"
}
};

0 comments on commit 3ce4e82

Please sign in to comment.