Created
January 11, 2021 07:59
-
-
Save imzhi/53d03ea1a1bc9a3141dffc48db4c887f to your computer and use it in GitHub Desktop.
vscode eslint配置文件
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"env": { | |
"browser": true, | |
"es2021": true | |
}, | |
"extends": [ | |
"airbnb-base" | |
], | |
"parserOptions": { | |
"sourceType": "module", | |
"ecmaVersion": 12 | |
}, | |
"rules": { | |
}, | |
"plugins": [ | |
"html" | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
cnpm
全局安装软件包:关于 VSCode ESLint 的配置,参考:https://b.imzhi.me/d/23-vscode-eslint。