mirror of
https://github.com/theoludwig/programming-challenges.git
synced 2024-12-08 00:45:29 +01:00
chore: cleaner configs
This commit is contained in:
parent
c306b51b86
commit
02aa5c790b
@ -1,12 +1,12 @@
|
||||
{
|
||||
"config": {
|
||||
"extends": "markdownlint/style/prettier",
|
||||
"relative-links": true,
|
||||
"default": true,
|
||||
"MD024": false,
|
||||
"MD033": false
|
||||
"relative-links": true,
|
||||
"no-duplicate-heading": false,
|
||||
"no-inline-html": false,
|
||||
},
|
||||
"globs": ["**/*.{md,mdx}"],
|
||||
"globs": ["**/*.md"],
|
||||
"ignores": ["**/node_modules"],
|
||||
"customRules": ["markdownlint-rule-relative-links"]
|
||||
"customRules": ["markdownlint-rule-relative-links"],
|
||||
}
|
||||
|
1156
package-lock.json
generated
1156
package-lock.json
generated
File diff suppressed because it is too large
Load Diff
29
package.json
29
package.json
@ -17,8 +17,8 @@
|
||||
"bin": "build/index.js",
|
||||
"scripts": {
|
||||
"start": "node --enable-source-maps build/index.js",
|
||||
"build": "rimraf ./build && swc ./cli --out-dir ./build",
|
||||
"build:dev": "swc ./src --out-dir ./build --watch",
|
||||
"build": "swc ./cli --out-dir ./build --strip-leading-paths --delete-dir-on-start",
|
||||
"build:dev": "swc ./cli --out-dir ./build --watch",
|
||||
"build:typescript": "tsc",
|
||||
"lint:commit": "commitlint",
|
||||
"lint:editorconfig": "editorconfig-checker",
|
||||
@ -29,28 +29,28 @@
|
||||
"dependencies": {
|
||||
"chalk": "5.3.0",
|
||||
"clipanion": "3.2.1",
|
||||
"date-and-time": "3.0.3",
|
||||
"date-and-time": "3.1.1",
|
||||
"execa": "8.0.1",
|
||||
"log-symbols": "6.0.0",
|
||||
"ora": "8.0.1",
|
||||
"replace-in-file": "7.0.2",
|
||||
"replace-in-file": "7.1.0",
|
||||
"table": "6.8.1",
|
||||
"typanion": "3.14.0",
|
||||
"validate-npm-package-name": "5.0.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@commitlint/cli": "18.4.3",
|
||||
"@commitlint/config-conventional": "18.4.3",
|
||||
"@swc/cli": "0.1.63",
|
||||
"@swc/core": "1.3.101",
|
||||
"@commitlint/cli": "18.6.0",
|
||||
"@commitlint/config-conventional": "18.6.0",
|
||||
"@swc/cli": "0.3.5",
|
||||
"@swc/core": "1.3.107",
|
||||
"@tsconfig/strictest": "2.0.2",
|
||||
"@types/mock-fs": "4.13.4",
|
||||
"@types/ms": "0.7.34",
|
||||
"@types/node": "20.10.5",
|
||||
"@types/sinon": "17.0.2",
|
||||
"@types/node": "20.11.10",
|
||||
"@types/sinon": "17.0.3",
|
||||
"@types/validate-npm-package-name": "4.0.2",
|
||||
"@typescript-eslint/eslint-plugin": "6.16.0",
|
||||
"@typescript-eslint/parser": "6.16.0",
|
||||
"@typescript-eslint/eslint-plugin": "6.20.0",
|
||||
"@typescript-eslint/parser": "6.20.0",
|
||||
"cross-env": "7.0.3",
|
||||
"editorconfig-checker": "5.1.2",
|
||||
"eslint": "8.56.0",
|
||||
@ -59,11 +59,10 @@
|
||||
"eslint-plugin-promise": "6.1.1",
|
||||
"eslint-plugin-unicorn": "50.0.1",
|
||||
"get-stream": "8.0.1",
|
||||
"markdownlint-cli2": "0.11.0",
|
||||
"markdownlint-rule-relative-links": "2.1.2",
|
||||
"markdownlint-cli2": "0.12.1",
|
||||
"markdownlint-rule-relative-links": "2.2.0",
|
||||
"mock-fs": "5.2.0",
|
||||
"ms": "2.1.3",
|
||||
"rimraf": "5.0.5",
|
||||
"sinon": "17.0.1",
|
||||
"typescript": "5.3.3"
|
||||
}
|
||||
|
@ -16,6 +16,6 @@
|
||||
"noImplicitReturns": true,
|
||||
"noUncheckedIndexedAccess": true,
|
||||
"noUnusedLocals": true,
|
||||
"noUnusedParameters": true
|
||||
}
|
||||
"noUnusedParameters": true,
|
||||
},
|
||||
}
|
||||
|
@ -9,7 +9,7 @@
|
||||
"rootDir": "./cli",
|
||||
"noEmit": true,
|
||||
"checkJs": false,
|
||||
"exactOptionalPropertyTypes": false
|
||||
"exactOptionalPropertyTypes": false,
|
||||
},
|
||||
"exclude": ["node_modules", "challenges", "templates", "temp", "tmp"]
|
||||
"exclude": ["node_modules", "challenges", "templates", "temp", "tmp"],
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user