@tsslint/cli 1.5.17 → 1.5.18

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.
Files changed (2) hide show
  1. package/index.js +0 -6
  2. package/package.json +4 -4
package/index.js CHANGED
@@ -290,12 +290,6 @@ class Project {
290
290
  (spinner?.stop ?? clack.log.message)(cached
291
291
  ? darkGray(`Processed ${processed} files with cache. (Use `) + cyan(`--force`) + darkGray(` to ignore cache.)`)
292
292
  : darkGray(`Processed ${processed} files.`));
293
- if (process.argv.includes('--fix') && !formattingSettings) {
294
- const vscodeSettings = ts.findConfigFile(process.cwd(), ts.sys.fileExists, '.vscode/settings.json');
295
- if (vscodeSettings) {
296
- clack.log.message(darkGray(`Found available editor settings, you can use `) + cyan(`--vscode-settings ${path.relative(process.cwd(), vscodeSettings)}`) + darkGray(` to enable code format.`));
297
- }
298
- }
299
293
  const projectsFlag = process.argv.find(arg => arg.endsWith('-projects'));
300
294
  if (projectsFlag) {
301
295
  clack.log.warn(darkGray(`Please use `)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tsslint/cli",
3
- "version": "1.5.17",
3
+ "version": "1.5.18",
4
4
  "license": "MIT",
5
5
  "bin": {
6
6
  "tsslint": "./bin/tsslint.js"
@@ -16,8 +16,8 @@
16
16
  },
17
17
  "dependencies": {
18
18
  "@clack/prompts": "^0.8.2",
19
- "@tsslint/config": "1.5.17",
20
- "@tsslint/core": "1.5.17",
19
+ "@tsslint/config": "1.5.18",
20
+ "@tsslint/core": "1.5.18",
21
21
  "@volar/language-core": "~2.4.0",
22
22
  "@volar/language-hub": "0.0.1",
23
23
  "@volar/typescript": "~2.4.0",
@@ -31,5 +31,5 @@
31
31
  "@vue-vine/language-service": "latest",
32
32
  "@vue/language-core": "latest"
33
33
  },
34
- "gitHead": "e9f145a91f3e7bd9ba86dd0de41ff7a8ffd99b46"
34
+ "gitHead": "037ab1b5d72098fcf01c750420a98db8d8f28ba6"
35
35
  }