Skip to content

Commit

Permalink
Feat/xml generation (#2)
Browse files Browse the repository at this point in the history
* setting eslint and prettier

* services added

* XML file generated

* Update fileManager.ts

* fix: submissions data

* comments resolved
  • Loading branch information
Tassneem04Hamdy authored Feb 22, 2023
1 parent 07479da commit a1dc9dd
Show file tree
Hide file tree
Showing 14 changed files with 511 additions and 13 deletions.
4 changes: 2 additions & 2 deletions .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
"rules": {
"indent": [
"error",
"tab"
4
],
"linebreak-style": [
"error",
Expand Down Expand Up @@ -51,4 +51,4 @@
}
]
}
}
}
6 changes: 6 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,11 @@
{
"mode": "auto"
}
],
"cSpell.words": [
"acmascis",
"ascis",
"codeforces",
"ICPC"
]
}
189 changes: 188 additions & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 7 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"clean": "rm -rf ./build",
"prerelease": "npm run package",
"release": "release-it",
"lint": "eslint --ignore-path .eslintignore --ext .js,.ts ."
"lint": "eslint --ignore-path .eslintignore --fix src/"
},
"repository": {
"type": "git",
Expand All @@ -27,7 +27,9 @@
"homepage": "https://github.com/acmASCIS/resolver-xml-generator#readme",
"devDependencies": {
"@eslint/create-config": "^0.4.2",
"@types/lodash": "^4.14.191",
"@types/node": "^18.13.0",
"@types/xml": "^1.0.8",
"@typescript-eslint/eslint-plugin": "^5.52.0",
"@typescript-eslint/parser": "^5.52.0",
"eslint": "^8.34.0",
Expand All @@ -45,7 +47,10 @@
"typescript": "^4.9.5"
},
"dependencies": {
"commander": "^10.0.0"
"@acmascis/codeforces-client": "github:acmascis/codeforces-client",
"commander": "^10.0.0",
"lodash": "^4.17.21",
"xml": "^1.0.1"
},
"git": {
"commitMessage": "chore: release v${version}"
Expand Down
Loading

0 comments on commit a1dc9dd

Please sign in to comment.