1 Star 0 Fork 0

一级码农/dayLogApi

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
eslint.config.js 771 Bytes
一键复制 编辑 原始数据 按行查看 历史
一级码农 提交于 2024-09-13 00:33 . 基本功能完成
module.exports = {
env: {
browser: true,
es2021: true,
},
extends: ['eslint:recommended', 'plugin:@typescript-eslint/recommended'],
parser: '@typescript-eslint/parser',
parserOptions: {
ecmaVersion: 12,
sourceType: 'module',
},
plugins: ['@typescript-eslint'],
rules: {
//为统一风格,不允许;结尾,--fix可以自动删除
semi: ['error', 'never'],
//允许使用any类型
'@typescript-eslint/no-explicit-any': ['off'],
// disable the rule for all files
'@typescript-eslint/explicit-module-boundary-types': 'off',
'no-restricted-syntax': [
'off',
{
selector: 'TSAnyKeyword',
message: '不推荐使用any类型. 建议指定更具体的对象类型',
},
],
},
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/bonn_admin/day-log-api.git
git@gitee.com:bonn_admin/day-log-api.git
bonn_admin
day-log-api
dayLogApi
main

搜索帮助