加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
.eslintrc.js 1.31 KB
一键复制 编辑 原始数据 按行查看 历史
amap-appx 提交于 2019-07-22 15:11 . docs(readme): update readme
module.exports = {
"env": {
"browser": true,
"commonjs": true,
"es6": true
},
"extends": "eslint:recommended",
"globals": {
wx: true,
my: true,
getApp: true,
App: true,
Page: true,
Component: true,
process: true,
__dirname: true,
getCurrentPages: true
},
"parserOptions": {
"ecmaVersion": 2018
},
"rules": {
"indent": ["error", 4],
"semi": [2, "always"], // 强制语句分号结尾
"keyword-spacing": [2, {
"before": true,
"after": true
}],
"space-before-blocks": [2, "always"],
"space-before-function-paren": [2, "always"],
"key-spacing": [2, {
"beforeColon": false,
"afterColon": true
}],
"comma-spacing": ["error", { "before": false, "after": true }],
"spaced-comment": [2, "always", { "markers": ["*!"] }],
'no-console': 0,
'no-empty': 2,
'use-isnan': 2,
'consistent-return': 0,
'default-case': 2,
'eqeqeq': 2,
'no-else-return': 2,
'no-extra-bind': 2,
'no-implicit-coercion': 2,
'no-new-wrappers': 2,
'no-redeclare': 2,
'no-return-assign': 2,
'no-useless-call': 2
}
};
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化