Skip to content

Commit

Permalink
clean up
Browse files Browse the repository at this point in the history
  • Loading branch information
frattaro committed Oct 18, 2024
1 parent 3ce5b9d commit 20a2fdd
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 270 deletions.
7 changes: 0 additions & 7 deletions eslint.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,6 @@ export default tseslint.config(
},
eslint.configs.recommended,
...tseslint.configs.recommended,
{
languageOptions: {
parserOptions: {
project: "./tsconfig.json"
}
}
},
pluginSecurity.configs.recommended,
eslintConfigPrettier,
eslintPluginPrettierRecommended,
Expand Down
256 changes: 0 additions & 256 deletions package-lock.json

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

9 changes: 3 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,17 +8,14 @@
"types": "dist/lib/index.d.ts",
"scripts": {
"build": "npm run clean && tsc && rimraf dist/tests",
"clean": "rimraf dist",
"clean": "rimraf dist && rimraf coverage",
"publish-package": "npm run clean && npm ci && npm run build && npm publish",
"test": "vitest run --coverage",
"lint": "eslint ."
"test": "npm run lint && vitest run --coverage",
"lint": "npm run clean && eslint . --max-warnings=0"
},
"devDependencies": {
"@trivago/prettier-plugin-sort-imports": "4.3.0",
"@types/node": "22.7.6",
"@typescript-eslint/eslint-plugin": "8.9.0",
"@typescript-eslint/parser": "8.9.0",
"@vitest/coverage-v8": "2.0.5",
"eslint": "9.12.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-prettier": "5.2.1",
Expand Down
2 changes: 1 addition & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,5 @@
"declaration": true,
"strictNullChecks": true
},
"include": ["./lib/**/*", "tests/**/*"]
"include": ["./lib/**/*"]
}

0 comments on commit 20a2fdd

Please sign in to comment.