公司电脑nodeJs版本12.16.3,npm版本6.14.4
不支持使用create-react-app最新版本来生成React项目,在借鉴了一些大佬的文章后,决定自己手动搭建脚手架,配置完基本的eslint之后,index.html报eslint错误如下:

Parsing error: Unexpected token (1:0)eslint:
解决办法:

npm install @typescript-eslint/parser --save-dev

.eslintrc.js中配置如下:

module.exports = {
	"root": true,
	"env": {
		"es6": true,
		"browser": true,
		"node": true
	},
	'parser': '@typescript-eslint/parser',//添加此行配置
	"extends": ["plugin:react/recommended"],
	"settings": {
		"react": {
			"version": "999.999.999"
		},
	},
	
	"plugins": ["babel", "react"],
	"parserOptions": {
		"parser": "babel-eslint",
		"ecmaVersion": 6,
		"sourceType": "module",
		"allowImportExportEverywhere": false,
		"ecmaFeatures": {
			"jsx": true,
		}
	},
	"globals": {
    "if": true,
    "else-if": true
  },
	"rules": {
	}
}

问题解决啦,啦啦啦

Logo

华为开发者空间,是为全球开发者打造的专属开发空间,汇聚了华为优质开发资源及工具,致力于让每一位开发者拥有一台云主机,基于华为根生态开发、创新。

更多推荐