-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
changed the directory structure and file names
- Loading branch information
1 parent
94eb4b6
commit 231a7a1
Showing
77 changed files
with
5,093 additions
and
5,092 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,14 @@ | ||
module.exports = { | ||
"env": { | ||
"browser": true, | ||
"es2021": true | ||
}, | ||
"extends": "eslint:recommended", | ||
"parserOptions": { | ||
"ecmaVersion": "latest", | ||
"sourceType": "module" | ||
}, | ||
"rules": { | ||
}, | ||
"plugins": ["only-warn"] | ||
} | ||
module.exports = { | ||
"env": { | ||
"browser": true, | ||
"es2021": true | ||
}, | ||
"extends": "eslint:recommended", | ||
"parserOptions": { | ||
"ecmaVersion": "latest", | ||
"sourceType": "module" | ||
}, | ||
"rules": { | ||
}, | ||
"plugins": ["only-warn"] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,26 +1,26 @@ | ||
const { Task } = require("./Task.js"); | ||
const { | ||
UnitTypes, | ||
ContentTypes, | ||
validType, | ||
validContentType, | ||
} = require("./Enums.js"); | ||
|
||
class Aim extends Task { | ||
constructor(basedir, lu_label, exp_path) { | ||
super( | ||
UnitTypes.AIM, | ||
"Aim", | ||
ContentTypes.TEXT, | ||
exp_path, | ||
basedir, | ||
"aim.md", | ||
"index.html", | ||
[], | ||
[], | ||
lu_label | ||
); | ||
} | ||
} | ||
|
||
module.exports = { Aim }; | ||
const { Task } = require("./task.js"); | ||
const { | ||
UnitTypes, | ||
ContentTypes, | ||
validType, | ||
validContentType, | ||
} = require("../enums.js"); | ||
|
||
class Aim extends Task { | ||
constructor(basedir, lu_label, exp_path) { | ||
super( | ||
UnitTypes.AIM, | ||
"Aim", | ||
ContentTypes.TEXT, | ||
exp_path, | ||
basedir, | ||
"aim.md", | ||
"index.html", | ||
[], | ||
[], | ||
lu_label | ||
); | ||
} | ||
} | ||
|
||
module.exports = { Aim }; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.