2 Star 3 Fork 0

沉淀/swagger2ts-gen-cli

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
.eslintrc.cjs 911 Bytes
一键复制 编辑 原始数据 按行查看 历史
/* eslint-disable @typescript-eslint/no-var-requires */
/*
'off' or 0 - turn the rule off
'warn' or 1 - turn the rule on as a warning (doesn't affect exit code)
'error' or 2 - turn the rule on as an error (exit code is 1 when triggered)
*/
const { defineConfig } = require('eslint-define-config')
module.exports = defineConfig({
root: true,
extends: ['eslint:recommended', 'plugin:@typescript-eslint/recommended'],
parser: '@typescript-eslint/parser',
parserOptions: {
sourceType: 'module',
ecmaVersion: 'latest',
ecmaFeatures: {
experimentalObjectRestSpread: true,
},
},
env: {
node: true,
es6: true,
},
rules: {
quotes: ['error', 'single'], // 采用单引号
semi: ['error', 'never'], // 取消末尾分号
'@typescript-eslint/no-explicit-any': 'off', // 可以使用any
'no-async-promise-executor': 'off', // 可以在Promise使用await
},
})
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
NodeJS
1
https://gitee.com/gengkaibo/swagger2ts-gen-cli.git
git@gitee.com:gengkaibo/swagger2ts-gen-cli.git
gengkaibo
swagger2ts-gen-cli
swagger2ts-gen-cli
master

搜索帮助