Skip to content

Commit

Permalink
Merge pull request #6 from ten986/feature/lint2
Browse files Browse the repository at this point in the history
lint かけただけ
  • Loading branch information
ten986 authored Jul 13, 2022
2 parents 71cd8d8 + c053f96 commit 5deb199
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,4 +30,4 @@ jobs:
- run: npm ci
- run: npm publish
env:
NODE_AUTH_TOKEN: ${{secrets.GITHUB_TOKEN}}
NODE_AUTH_TOKEN: ${{secrets.GITHUB_TOKEN}}
2 changes: 1 addition & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"prettier.disableLanguages": ["javascript", "typescript"],
"typescript.tsdk": "node_modules/typescript/lib",
"path-autocomplete.pathMappings": {
"@": "${folder}/src",
"@": "${folder}/src"
},
// 入出力で改行が鍵になるので設定
// ts とかはどうせ eslint で改行が入る
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"fix:prettier": "npm run lint:prettier -- --write",
"lint": "run-p lint:*",
"lint:eslint": "eslint --ext js,ts .",
"lint:prettier": "prettier -l \"**/*.{json,md,yml}\"",
"lint:prettier": "prettier -l \"**/*.{json,yml}\"",
"lint:type": "tsc --noEmit",
"test:unit": "jest",
"dev": "ts-node -r tsconfig-paths/register src/index.ts",
Expand Down
4 changes: 1 addition & 3 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,7 @@
"moduleResolution": "node",
"esModuleInterop": true,
"outDir": "dist",
"rootDirs": [
"."
],
"rootDirs": ["."],
"baseUrl": "./src",
"paths": {
"@/*": ["./*"]
Expand Down

0 comments on commit 5deb199

Please sign in to comment.