1 Star 0 Fork 13

divcssco/s-ui

forked from 无痕/s-ui 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
.eslintrc 1.75 KB
一键复制 编辑 原始数据 按行查看 历史
无痕 提交于 2021-05-18 10:10 . ++
/*
* @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
}
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
JavaScript
1
https://gitee.com/divcsscom/s-ui.git
git@gitee.com:divcsscom/s-ui.git
divcsscom
s-ui
s-ui
master

搜索帮助