Skip to content

Commit

Permalink
chore: apply linting on tsconfig.json (#1963)
Browse files Browse the repository at this point in the history
  • Loading branch information
Uzlopak committed Jan 30, 2024
1 parent f7e4588 commit 1eb0389
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@
},
"scripts": {
"build": "rimraf lib && tsc -p tsconfig.json",
"lint": "prettier --check \"src/**/*.ts\" \"test/**/*.ts\" \"docs/*.md\" *.md package.json --end-of-line auto",
"lint:fix": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\" \"docs/*.md\" *.md package.json --end-of-line auto",
"lint": "prettier --check \"src/**/*.ts\" \"test/**/*.ts\" \"docs/*.md\" *.md tsconfig.json package.json --end-of-line auto",
"lint:fix": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\" \"docs/*.md\" *.md tsconfig.json package.json --end-of-line auto",
"pretest": "npm run build && tsc --noEmit -p test",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
Expand Down
4 changes: 2 additions & 2 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@
"resolveJsonModule": true,
"allowJs": true,
"lib": ["es2023", "dom"],
"moduleResolution": "node16"
"moduleResolution": "node16",
},
"include": ["src/**/*"],
"compileOnSave": false
"compileOnSave": false,
}

0 comments on commit 1eb0389

Please sign in to comment.