代码拉取完成,页面将自动刷新
同步操作将从 无痕/s-ui 强制同步,此操作会覆盖自 Fork 仓库以来所做的任何修改,且无法恢复!!!
确定后同步将在后台操作,完成时将刷新页面,请耐心等待。
/*
* @Description: eslint配置
* @Author: 无痕
* @Email: 350801869@qq.com
* @Date: 2020-07-08 14:04:19
* @LastEditTime: 2021-05-17 16:56:37
* @LastEditors: 无痕
*/
{
"root": true,
"env": {
"node": true
},
"globals": {
"wx": true,
"weex": true,
"uni": true,
"plus": true,
"getApp": true,
"getCurrentPages": true
},
"extends": [
"plugin:vue/essential",
"plugin:vue/recommended",
"@vue/standard"
],
"rules": {
"vue/require-prop-types": 0,
"vue/no-v-html": 0,
"vue/require-default-prop": 0,
"vue/html-self-closing": 0,
"vue/max-attributes-per-line": 0,
"vue/singleline-html-element-content-newline": 0,
// 箭头函数参数只有一个时去掉括号
"arrow-parens": [
"error",
"as-needed"
],
// 字符串使用单引号
"quotes": [
"error",
"single"
],
// 强制分号结尾
"semi": [
"error",
"always"
],
// 不强制驼峰命名
"camelcase": 0,
// 不强制使用全等
"eqeqeq": 0,
// 函数名之前不能有空格
"space-before-function-paren": 0,
// 数组和对象键值对末了一个逗号,多行形式必需带逗号,单行形式不能带逗号
"comma-dangle": [
2,
"always-multiline"
],
// 逗号前后的空格
"comma-spacing": [
2,
{
"before": false,
"after": true
}
],
"comma-style": [
2,
"last"
],
"no-console": 0,
"no-useless-return": 0,
"no-debugger": 0,
"prefer-promise-reject-errors": 0,
"standard/no-callback-literal": 0,
"no-tabs": 0,
"no-unused-expressions": 0,
"no-mixed-operators": 0,
"import/no-webpack-loader-syntax": 0,
"no-useless-escape": 0
}
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。