在每次打开编辑器的Atom 1.18中,我的.babelrc文件默认为JSON
文件类型,这使得语法高亮显示处于关闭状态。我必须不断将其更改回Babel
类型。
如何修复(暂时):
每次关闭并打开.babelrc文件时都必须重置它。
现在我意识到这是一个很少被触及的文件,但知道如何解决其他文件类型会有所帮助。
答案 0 :(得分:2)
有一种非常具体的方法可以在config.cson中设置它。
https://discuss.atom.io/t/how-do-i-make-atom-recognize-a-file-with-extension-x-as-language-y/26539
http://flight-manual.atom.io/using-atom/sections/basic-customization/#configuring-with-cson
exports_files(['config.h'])
答案 1 :(得分:1)
我删除这些错误的方法是让文件JSON兼容。 不是完美的解决方案,但有效。
//.babelrc
{
"plugins": [
"transform-class-properties"
],
"presets": [
["es2015", { "modules": false}],
"react",
],
}