原子如何将.js文件的默认语法突出显示更改为language-babel

时间:2018-11-04 20:53:13

标签: javascript babeljs atom-editor

所有内容都包含在标题中。突然之间,.js文件的atom不再默认为language-babel,而且我不确定如何恢复以前的行为。

更新-当前的config.cson:

"*":
  core:
    telemetryConsent: "no"
  editor:
    fontFamily: "Operator Mono Lig"
  "exception-reporting":
    userId: "a8f4cc72-fe9c-4093-b562-fcb344219d50"
  "language-dotenv":
    dotenvFileNames: [
      ".env"
      ".env.schema"
    ]
  "linter-eslint": {}
  "linter-ui-default": {}
  "prettier-atom":
    formatOnSaveOptions:
      enabled: true
      isDisabledIfNotInPackageJson: true
    prettierOptions:
      bracketSpacing: false
      semi: false
    useEslint: true
  "tree-view":
    hideVcsIgnoredFiles: true
  welcome:
    showOnStartup: false
".languagebabel.ttlextension":
  editor:
    softWrap: true

我尝试了您的建议的一些变体,但由于原子无法再发射,显然我搞砸了

1 个答案:

答案 0 :(得分:7)

您可以通过在config.cson文件中添加以下内容来创建自定义文件类型

  core:
    customFileTypes:
      "source.js.jsx": [
        "jsx"
        "js"
      ]

这将对所有.js和.jsx文件使用language-babel