2 Star 3 Fork 1

thepoy / marktext

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
.eslintrc.js 1.49 KB
一键复制 编辑 原始数据 按行查看 历史
module.exports = {
root: true,
parserOptions: {
parser: 'babel-eslint',
ecmaVersion: 8,
ecmaFeatures: {
impliedStrict: true
},
sourceType: 'module'
},
env: {
browser: true,
es6: true,
node: true
},
extends: [
'standard',
'eslint:recommended',
'plugin:vue/base',
'plugin:import/errors',
'plugin:import/warnings'
],
globals: {
__static: true
},
plugins: [
'html',
'vue'
],
rules: {
// allow paren-less arrow functions
'arrow-parens': "off",
// allow async-await
'generator-star-spacing': "off",
// allow console
'no-console': "off",
// allow debugger during development
'no-debugger': process.env.NODE_ENV === 'production' ? "error" : "off",
'no-return-assign': "warn",
'no-new': "warn",
// disallow semicolons
semi: [2, "never"],
'require-atomic-updates': "off",
// TODO: fix these errors someday
'prefer-const': "off",
'no-new': "off",
'no-mixed-operators': "off",
'no-prototype-builtins': "off",
'no-return-await': "off",
'accessor-pairs': "off",
// Workaround #2422.
'template-curly-spacing': "off",
'indent' : "off"
},
settings: {
'import/resolver': {
alias: {
map: [
['common', './src/common'],
// Normally only valid for renderer/
['@', './src/renderer'],
['muya', './src/muya']
],
extensions: ['.js', '.vue', '.json', '.css', '.node']
}
}
}
}
NodeJS
1
https://gitee.com/thepoy/marktext.git
git@gitee.com:thepoy/marktext.git
thepoy
marktext
marktext
develop

搜索帮助