Skip to content

Commit

Permalink
feat: add resume
Browse files Browse the repository at this point in the history
  • Loading branch information
katlyn committed Oct 10, 2023
1 parent 3b3b109 commit 1c3322b
Show file tree
Hide file tree
Showing 22 changed files with 1,076 additions and 80 deletions.
31 changes: 31 additions & 0 deletions .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@
}
},
"rules": {
"arrow-spacing": "error",
"quotes": [
"error",
"double",
Expand Down Expand Up @@ -49,8 +50,25 @@
"error",
"never"
],
"function-call-argument-newline": [
"error",
"consistent"
],
"function-paren-newline": [
"error",
"multiline-arguments"
],
"no-multi-spaces": "error",
"no-multiple-empty-lines": [
"error",
{
"max": 2,
"maxBOF": 0,
"maxEOF": 0
}
],
"no-trailing-spaces": "error",
"comma-dangle": [ "error", "never" ],
"no-whitespace-before-property": "error",
"semi": [
"error",
Expand All @@ -72,6 +90,19 @@
"error",
"always"
],
"object-curly-newline": [
"error",
{
"consistent": true,
"multiline": true
}
],
"object-property-newline": [
"error",
{
"allowAllPropertiesOnSameLine": true
}
],
"eqeqeq": [
"error",
"always",
Expand Down
9 changes: 7 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,21 +6,26 @@
"scripts": {
"lint": "eslint . --ext .js,.ts",
"start": "node ./dist/index.js",
"start:dev": "ts-node-dev --respawn src/index.ts",
"dev": "concurrently npm:dev:*",
"dev:css": "sass --watch public",
"dev:server": "ts-node-dev -r dotenv/config --respawn src/index.ts",
"build": "tsc",
"clean": "rm -rf ./dist tsconfig.buildinfo"
},
"license": "MIT",
"devDependencies": {
"@types/ejs": "^3.1.1",
"@types/http-errors": "^2.0.1",
"@types/node": "^18.11.13",
"@types/node": "^20.8.3",
"@typescript-eslint/eslint-plugin": "^5.45.1",
"@typescript-eslint/parser": "^5.45.1",
"concurrently": "^8.2.1",
"dotenv": "^16.3.1",
"eslint": "^8.28.0",
"eslint-plugin-simple-import-sort": "^8.0.0",
"eslint-plugin-unused-imports": "^2.0.0",
"pino-pretty": "^9.1.1",
"sass": "^1.69.0",
"ts-node": "^10.9.1",
"ts-node-dev": "^2.0.0",
"typescript": "^4.9.4"
Expand Down
Loading

0 comments on commit 1c3322b

Please sign in to comment.