6

私はVueがまったく初めてです。

CLI を使用したいのですが、4 つのスペース インデントが必要です (typescript と vuex を使用)。しかし、24時間もがき苦しんだ後、私は何も機能させることに近づいていません. 無理なら私にも言ってください。

私は tslint が進むべき道だと思っていましたが、解決策を見つけることができませんでした。だから私はeslintを試して、これをpackage.jsonに追加しました

  "devDependencies": {
    "@vue/cli-plugin-eslint": "^3.0.4",
    "@vue/cli-plugin-pwa": "^3.0.4",
    "@vue/cli-plugin-typescript": "^3.0.4",
    "@vue/cli-service": "^3.0.4",
    "@vue/eslint-config-prettier": "^3.0.4",
    "@vue/eslint-config-typescript": "^3.0.4",
    "eslint": "^5.6.1",
    "eslint-plugin-vue": "^5.0.0-beta.3",      // <------------------
    "typescript": "^3.0.0",
    "vue-template-compiler": "^2.5.17"
  }

次に、私が持っているeslintrcです

 module.exports = {
    root: true,
    env: {
        node: true
    },
    extends: ["plugin:vue/essential", "@vue/prettier", "@vue/typescript"],
    rules: {
        "no-console": process.env.NODE_ENV === "production" ? "error" : "off",
        "no-debugger": process.env.NODE_ENV === "production" ? "error" : "off",
        "vue/script-indent": ["error", 4, { baseIndent: 1 }],
        indent: ["error", 4]
    },
    parserOptions: {
        parser: "typescript-eslint-parser"
    }
};

それから私が走るとき

$ npx eslint --fix *.js
=============

WARNING: You are currently running a version of TypeScript which is not officially supported by typescript-eslint-parser.

You may find that it works just fine, or you may not.

SUPPORTED TYPESCRIPT VERSIONS: ~3.0.1

YOUR TYPESCRIPT VERSION: 3.1.1

Please only submit bug reports when using the officially supported version.

=============

/Users/x/code/sync/vue/restos2/postcss.config.js
  2:1  error  Expected indentation of 4 spaces but found 2  indent
  3:1  error  Expected indentation of 8 spaces but found 4  indent
  4:1  error  Expected indentation of 4 spaces but found 2  indent

✖ 3 problems (3 errors, 0 warnings)
  3 errors and 0 warnings potentially fixable with the `--fix` option.
but the problem is that no files ever get changed.
4

1 に答える 1

5

tslint doc で説明されているように、インデント ルールは間違った量のインデント文字を修正しません。文字タイプのみを修正します。これは、タブをスペースに、またはその逆に変換できることを意味しますが、4 つのスペースを 2 つのスペースに修正しません。

注: 自動修正は、無効なインデントの空白を目的のタイプに変換するだけで、無効な空白のサイズは修正しません。

https://palantir.github.io/tslint/rules/indent/

そうですね、eslint を使用する必要があります。完全な eslintrc ファイルは表示されませんが、主な問題は次の行にあると思います: indent: ["error", 4]. それを取り除いてみてください。

このeslint構成は私のために働いています:

{
    "root": true,
    "env": {
      "node": true
    },
    "extends": [
      "plugin:vue/essential",
      "eslint:recommended",
      "@vue/typescript"
    ],
    "rules": {
      "vue/script-indent": ["error",2,{"baseIndent": 1}]
    },
    "parserOptions": {
      "parser": "typescript-eslint-parser"
    }
}

そして実行しますnpm run lint

于 2018-10-09T12:18:59.063 に答える