vscode es6 구문 오류
VS Code를 사용하여 ES6 구문 프로젝트를 개발하면 Promise 및 기타 키워드와 구문이 인식되지 않고 오류가 보고됩니다.
해결책:
프로젝트 루트 디렉터리에 두 개의 파일을 만듭니다: .eslintrc.js .eslintignore
.eslintrc.js
// http://eslint.org/docs/user-guide/configuringmodule.exports = { root: true, parser: 'babel-eslint', parserOptions: { sourceType: 'module' }, env: { browser: true, }, // https://github.com/feross/standard/blob/master/RULES.md#javascript-standard-style extends: 'standard', // required to lint *.vue files plugins: [ 'html' ], // add your custom rules here 'rules': { // allow paren-less arrow functions 'arrow-parens': 0, // allow async-await 'generator-star-spacing': 0, // allow debugger during development 'no-debugger': process.env.NODE_ENV === 'production' ? 2 : 0 }}
.eslintignore
build/*.js config/*.js
관련 권장 사항: "vscode 사용 튜토리얼 》
위 내용은 vscode es6 구문 오류의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!