@10stars/config 11.0.10 → 11.0.11

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/.eslintrc.js CHANGED
@@ -185,6 +185,7 @@ module.exports = {
185
185
  "@typescript-eslint/no-explicit-any": type.ignore,
186
186
  "@typescript-eslint/ban-types": type.ignore,
187
187
  "@typescript-eslint/only-throw-error": type.ignore, // it's useful to have a flexibility in throwing a plain object
188
+ "@typescript-eslint/use-unknown-in-catch-callback-variable": type.ignore, // we explicitly set the type in the catch block
188
189
  // ---- we ignore these "no-unsafe-*" as it noticeably slows down the code writing
189
190
  "@typescript-eslint/no-unsafe-assignment": type.ignore,
190
191
  "@typescript-eslint/no-unsafe-member-access": type.ignore,
package/package.json CHANGED
@@ -4,7 +4,7 @@
4
4
  "access": "public"
5
5
  },
6
6
  "name": "@10stars/config",
7
- "version": "11.0.10",
7
+ "version": "11.0.11",
8
8
  "author": "10stars.dev <web@alexandrov.co> (https://alexandrov.co)",
9
9
  "license": "MIT",
10
10
  "bin": {
package/src/index.ts CHANGED
@@ -23,7 +23,7 @@ const getConfig = async (): Promise<Config> =>
23
23
 
24
24
  const getESLintCommonCmd = async () => {
25
25
  const isMonorepo = await checkIsMonorepo(cwd)
26
- return `--ext .ts,.tsx --no-error-on-unmatched-pattern ${isMonorepo ? `*/src */*.ts` : `src *.ts`}`
26
+ return `--ext .ts,.tsx --no-error-on-unmatched-pattern ${isMonorepo ? `*/src */*.ts` : `src *.ts`} ${process.env.CI ? `--quiet` : ``}`
27
27
  }
28
28
 
29
29
  const typecheck = () => exec("tsc --project ./tsconfig.json --watch --noEmit")