1 Star 0 Fork 6

程立雪/push-markdown

forked from 晓凹凸曼/push-markdown 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
.eslintrc.js 1.21 KB
一键复制 编辑 原始数据 按行查看 历史
晓凹凸曼 提交于 2021-07-12 23:00 . 非图片能够推送了
/*
* @Author: szx
* @Date: 2021-07-04 13:56:18
* @LastEditTime: 2021-07-12 14:54:49
* @Description:
* @FilePath: \push-markdown\.eslintrc.js
*/
module.exports = {
root: true,
env: {
node: true
},
plugins: [
'html' // 此插件用来识别.html 和 .vue文件中的js代码
],
extends: ['plugin:vue/vue3-essential', 'eslint:recommended', '@vue/typescript/recommended', '@vue/prettier', '@vue/prettier/@typescript-eslint'],
parserOptions: {
ecmaVersion: 2020
},
rules: {
'@typescript-eslint/no-empty-function': 'off',
'@typescript-eslint/no-var-requires': 'off',
'@typescript-eslint/no-this-alias': 'off',
'@typescript-eslint/no-explicit-any': 'off',
'@typescript-eslint/explicit-module-boundary-types': 'off',
'@typescript-eslint/no-unused-vars': 'off',
'no-unused-vars': 'warn',
'vue/no-unused-vars': 'off',
'space-before-function-paren': 'off',
'comma-dangle': ['error', 'never'],
quotes: ['error', 'single', { avoidEscape: true, allowTemplateLiterals: false }],
semi: 0, //关闭结尾不能有分号
'no-console': process.env.NODE_ENV === 'production' ? 'warn' : 'off',
'no-debugger': process.env.NODE_ENV === 'production' ? 'warn' : 'off'
}
};
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
JavaScript
1
https://gitee.com/xiaoCHENG66/push-markdown.git
git@gitee.com:xiaoCHENG66/push-markdown.git
xiaoCHENG66
push-markdown
push-markdown
master

搜索帮助