1 Star 0 Fork 0

xuling1979/avo

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
.eslintrc.json 1.30 KB
一键复制 编辑 原始数据 按行查看 历史
Adrian Marin 提交于 2021-04-15 19:35 . feature: key value field (#329)
{
"env": {
"browser": true,
"es6": true
},
"extends": [
"airbnb-base"
],
"globals": {
"Atomics": "readonly",
"SharedArrayBuffer": "readonly"
},
"parser": "babel-eslint",
"parserOptions": {
"ecmaVersion": 2018,
"sourceType": "module"
},
"plugins": [
"sort-imports-es6-autofix"
],
"rules": {
"sort-imports-es6-autofix/sort-imports-es6": [2, {
"ignoreCase": false,
"ignoreMemberSort": false,
"memberSyntaxSortOrder": ["none", "all", "multiple", "single"]
}],
// "sort-imports": ["error"],
"semi": ["error", "never"],
"no-empty": ["error", { "allowEmptyCatch": true }],
"no-multi-spaces": 0,
"no-shadow": 0,
"no-plusplus": 0,
"no-param-reassign": 0,
"import/prefer-default-export": 0,
"camelcase": ["error", {"ignoreDestructuring": true}],
"newline-before-return": 1,
"max-len": ["error", { "code": 180 }],
"class-methods-use-this": 0
},
"settings": {
"import/resolver": {
"alias": {
"map": [
["@", "./app/packs"],
["~", "./node_modules"]
]
}
}
}
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/xuling1979/avo.git
[email protected]:xuling1979/avo.git
xuling1979
avo
avo
main

搜索帮助