加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
.eslintrc.js 679 Bytes
一键复制 编辑 原始数据 按行查看 历史
黒之染 提交于 2021-02-03 17:10 . init
// 要安装以下npm包才有效
// eslint
// eslint-config-prettier
// eslint-plugin-prettier
// @typescript-eslint/eslint-plugin
// @typescript-eslint/parser
module.exports = {
parser: "@typescript-eslint/parser", //定义ESLint的解析器
extends: [
'prettier/@typescript-eslint',
'plugin:prettier/recommended'
], //定义文件继承的子规范
plugins: ["@typescript-eslint"], //定义了该eslint文件所依赖的插件
env: {
//指定代码的运行环境
browser: false,
node: true
},
globals: {
// ENV: true
},
parserOptions: {
//指定ESLint可以解析JSX语法
ecmaVersion: 2019,
sourceType: "module"
}
};
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化