Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Disable tslint fixes in vue-cli

Tags:

tslint

vue-cli

I need to not allow tslint to fix found errors. For example, if it found comma missing, I need it to only tell me that it found it, and not actually fix it.

I found the "--no-fix" parameter in its vue-cli documentation, but it doesn't look like it is working. (I'm using npm run lint, where "lint": "vue-cli-service lint --no-fix" in package.json)

Are there any other ways to stop tslint's automatic fixes?

like image 611
Nikita Kress Avatar asked Apr 05 '18 14:04

Nikita Kress


1 Answers

The "--no-fix" option works for me. Below is my configuration, please check your lint version:

{
  "name": "frontend",
  "version": "0.1.0",
  "private": true,
  "scripts": {
    "serve": "vue-cli-service serve --port 3000",
    "build": "vue-cli-service build",
    "lint": "vue-cli-service lint --no-fix",
    "test:e2e": "vue-cli-service test:e2e",
    "test:unit": "vue-cli-service test:unit"
  },
  "dependencies": {
    "@riophae/vue-treeselect": "0.0.37",
    "axios": "^0.18.0",
    "bootstrap-vue": "^2.0.0-rc.11",
    "izitoast": "^1.4.0",
    "moment": "^2.22.2",
    "v-calendar": "^0.9.7",
    "v-select2-component": "^0.3.1",
    "vue": "^2.5.17",
    "vue-full-calendar": "^2.7.0",
    "vue-izitoast": "^1.1.2",
    "vue-js-modal": "^1.3.27",
    "vue-router": "^3.0.1",
    "vue2-daterange-picker": "^0.1.5",
    "vuejs-datepicker": "^1.5.4",
    "vuex": "^3.0.1"
  },
  "devDependencies": {
    "@vue/cli-plugin-babel": "^3.1.1",
    "@vue/cli-plugin-eslint": "^3.1.5",
    "@vue/cli-plugin-unit-jest": "^3.1.1",
    "@vue/cli-service": "^3.1.4",
    "@vue/eslint-config-standard": "^4.0.0",
    "@vue/test-utils": "^1.0.0-beta.20",
    "ajv": "^6.5.5",
    "babel-core": "7.0.0-bridge.0",
    "babel-eslint": "^10.0.1",
    "babel-jest": "^23.6.0",
    "eslint": "^5.8.0",
    "eslint-plugin-cypress": "^2.1.3",
    "eslint-plugin-vue": "^5.0.0-0",
    "node-sass": "^4.10.0",
    "sass-loader": "^7.1.0",
    "vue-template-compiler": "^2.5.17"
  }
}
like image 97
ytll21 Avatar answered Sep 19 '22 17:09

ytll21