7 Star 46 Fork 11

Gitee 极速下载/CherryMarkdown

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
此仓库是为了提升国内下载速度的镜像仓库,每日同步一次。 原始仓库: https://github.com/Tencent/cherry-markdown
克隆/下载
.eslintrc.js 1.13 KB
一键复制 编辑 原始数据 按行查看 历史
jiawei7913 提交于 2021-12-15 11:52 . feat: add eslint jest plugin
module.exports = {
env: {
browser: true,
es6: true,
'jest/globals': true,
},
extends: ['eslint-config-tencent', 'plugin:prettier/recommended'],
globals: {
BUILD_ENV: 'readonly',
process: 'readonly',
},
parser: '@babel/eslint-parser',
parserOptions: {
ecmaVersion: 2020,
sourceType: 'module',
},
plugins: ['prettier', 'jest'],
rules: {
'prettier/prettier': 'error',
// curly: 'error',
// 'brace-style': ['error', '1tbs'],
// 不允许修改函数参数, 但允许修改函数参数中的属性
'no-param-reassign': ['error', { props: false }],
// indent: ['error', 4],
// // 'max-len': ['error', { code: 100 }],
// 'linebreak-style': ['error', 'unix'],
// quotes: ['error', 'single'],
// semi: ['error', 'always'],
'no-unused-vars': [
'warn',
{
args: 'none',
},
],
// 'comma-dangle': [
// 'warn',
// {
// arrays: 'only-multiline',
// objects: 'only-multiline',
// imports: 'never',
// exports: 'never',
// functions: 'never',
// },
// ],
},
};
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
JavaScript
1
https://gitee.com/mirrors/CherryMarkdown.git
[email protected]:mirrors/CherryMarkdown.git
mirrors
CherryMarkdown
CherryMarkdown
main

搜索帮助