加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
.eslintrc.js 871 Bytes
一键复制 编辑 原始数据 按行查看 历史
BansheeHannibal 提交于 2019-12-03 10:09 . eslint prettierrc
module.exports = {
parser: '@typescript-eslint/parser', // Specifies the ESLint parser
env: {
browser: true,
node: true
},
plugins: ['@typescript-eslint'],
extends: [
'prettier',
'plugin:@typescript-eslint/recommended', // Uses the recommended rules from the @typescript-eslint/eslint-plugin
'plugin:prettier/recommended', // Enables eslint-plugin-prettier and displays prettier errors as ESLint errors. Make sure this is always the last configuration in the extends array.
'prettier/@typescript-eslint', // Uses eslint-config-prettier to disable ESLint rules from @typescript-eslint/eslint-plugin that would conflict with prettier
],
rules: {
'@typescript-eslint/camelcase': 0,
'@typescript-eslint/no-empty-function': 0,
"@typescript-eslint/ban-ts-ignore":0
}
};
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化