0
Atom-typescriptは、コードをフォーマットするときにタブスペースを2から4に変更します。atom-typescriptのタブスペースを変更する
私はformatting.jsファイルを変更し、2に設定しますが、それでも私は..
どのように私は原子typescriptですにタブスペースを変更することができ、同じ問題に直面していますか? @baruchによって示唆されるように
以下がformatting.js
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
/**
* Maintainance:
* When a new option is added add it to:
* - the FormatCodeOptions interface
* - the defaultFormatCodeOptions function
* - the makeFormatCodeOptions function
*/
const os_1 = require("os");
function defaultFormatCodeOptions() {
return {
baseIndentSize: 2,
indentSize: 2,
tabSize: 2,
newLineCharacter: os_1.EOL,
convertTabsToSpaces: true,
indentStyle: "Smart",
insertSpaceAfterCommaDelimiter: true,
insertSpaceAfterSemicolonInForStatements: true,
insertSpaceBeforeAndAfterBinaryOperators: true,
insertSpaceAfterKeywordsInControlFlowStatements: true,
insertSpaceAfterFunctionKeywordForAnonymousFunctions: false,
insertSpaceAfterOpeningAndBeforeClosingNonemptyParenthesis: false,
insertSpaceAfterOpeningAndBeforeClosingNonemptyBrackets: false,
insertSpaceAfterOpeningAndBeforeClosingTemplateStringBraces: false,
insertSpaceAfterOpeningAndBeforeClosingJsxExpressionBraces: false,
placeOpenBraceOnNewLineForFunctions: false,
placeOpenBraceOnNewLineForControlBlocks: false,
};
}
exports.defaultFormatCodeOptions = defaultFormatCodeOptions;
//# sourceMappingURL=formatting.js.map
エディタの設定を確認しましたか? – Baruch
はい、エディタのタブの長さは2に設定されています。 Atom - > preferences - > editor - >タブの長さ – prranay
atom-typescriptを使用してコードをフォーマットすると、タブのスペースが2から4に変更されます。 – prranay