complete-lint 1.4.0 → 1.5.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +1 -1
- package/README.md +1 -0
- package/package.json +3 -3
package/LICENSE
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
The MIT License (MIT)
|
|
2
2
|
|
|
3
|
-
Copyright The Complete Contributors
|
|
3
|
+
Copyright (c) 2024 The Complete Contributors
|
|
4
4
|
|
|
5
5
|
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
|
6
6
|
|
package/README.md
CHANGED
|
@@ -156,6 +156,7 @@ await lintScript(async () => {
|
|
|
156
156
|
const promises = [
|
|
157
157
|
// Use TypeScript to type-check the code.
|
|
158
158
|
$`tsc --noEmit`,
|
|
159
|
+
$`tsc --noEmit --project ./scripts/tsconfig.json`,
|
|
159
160
|
|
|
160
161
|
// Use ESLint to lint the TypeScript code.
|
|
161
162
|
// - "--max-warnings 0" makes warnings fail, since we set all ESLint errors to warnings.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "complete-lint",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.5.0",
|
|
4
4
|
"description": "A linting dependency meta-package for TypeScript projects.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"lint",
|
|
@@ -27,10 +27,10 @@
|
|
|
27
27
|
"dependencies": {
|
|
28
28
|
"@prettier/plugin-xml": "^3.4.1",
|
|
29
29
|
"@types/node": "^22.5.4",
|
|
30
|
-
"complete-node": "^1.
|
|
30
|
+
"complete-node": "^1.2.0",
|
|
31
31
|
"complete-tsconfig": "^1.0.0",
|
|
32
32
|
"cspell": "^8.14.2",
|
|
33
|
-
"cspell-check-unused-words": "^1.3.
|
|
33
|
+
"cspell-check-unused-words": "^1.3.2",
|
|
34
34
|
"eslint": "^9.10.0",
|
|
35
35
|
"eslint-config-complete": "^1.2.0",
|
|
36
36
|
"eslint-import-resolver-typescript": "^3.6.3",
|