Skip to content

Commit

Permalink
chore: consolidate some config into package.json
Browse files Browse the repository at this point in the history
  • Loading branch information
boneskull committed Aug 13, 2024
1 parent 92b33a9 commit dc85595
Show file tree
Hide file tree
Showing 3 changed files with 39 additions and 17 deletions.
10 changes: 0 additions & 10 deletions commitlint.config.js

This file was deleted.

7 changes: 0 additions & 7 deletions knip.json

This file was deleted.

39 changes: 39 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -102,6 +102,45 @@
"typescript-eslint": "7.18.0",
"xstate": "5.17.1"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
],
"rules": {
"body-max-line-length": [
0
],
"footer-max-line-length": [
0
],
"header-max-length": [
0
],
"subject-case": [
0
],
"subject-full-stop": [
0
]
}
},
"knip": {
"entry": [
"src/index.ts",
"test/**/*.spec.ts"
],
"ignoreDependencies": [
"markdownlint-cli2-formatter-pretty"
],
"ignoreExportsUsedInFile": {
"interface": true,
"type": true
},
"project": [
"src/**/*.ts",
"test/**/*.ts"
]
},
"lint-staged": {
"*": [
"prettier --ignore-unknown --write",
Expand Down

0 comments on commit dc85595

Please sign in to comment.