6 Star 26 Fork 5

Gitee 极速下载 / Text-to-Handwriting

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
此仓库是为了提升国内下载速度的镜像仓库,每日同步一次。 原始仓库: https://github.com/saurabhdaware/text-to-handwriting
克隆/下载
.eslintrc.js 981 Bytes
一键复制 编辑 原始数据 按行查看 历史
Saurabh Daware 提交于 2020-07-08 13:59 . remove index.html from eslint
module.exports = {
env: {
es6: true,
node: true,
browser: true
},
extends: ['google', 'prettier'],
plugins: ['prettier'],
globals: {
Atomics: 'readonly',
SharedArrayBuffer: 'readonly'
},
parserOptions: {
ecmaVersion: 2018,
sourceType: 'module'
},
rules: {
'prettier/prettier': ['error'],
'comma-dangle': 0,
'no-trailing-spaces': 0,
'guard-for-in': 0,
'no-invalid-this': 0,
'valid-jsdoc': 0,
'require-jsdoc': 0,
'arrow-parens': 0,
'operator-linebreak': [
'error',
'after',
{
overrides: { '?': 'ignore', ':': 'ignore', '+': 'ignore' }
}
],
indent: [
'error',
2,
{
CallExpression: { arguments: 'first' },
ignoredNodes: [
'CallExpression > CallExpression',
'CallExpression > MemberExpression'
],
SwitchCase: 1
}
],
'max-len': ['error', { code: 80, ignoreComments: true }]
}
};
JavaScript
1
https://gitee.com/mirrors/Text-to-Handwriting.git
git@gitee.com:mirrors/Text-to-Handwriting.git
mirrors
Text-to-Handwriting
Text-to-Handwriting
master

搜索帮助