2 Star 7 Fork 4

sqa / im-mobile-web

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
.eslintrc.js 772 Bytes
一键复制 编辑 原始数据 按行查看 历史
sutenqiang-宿舍 提交于 2022-05-06 23:49 . first commit
module.exports = {
root: true,
env: {
browser: true,
es2021: true,
},
extends: ['plugin:vue/vue3-strongly-recommended', 'standard', 'prettier'],
parserOptions: {
ecmaVersion: 13,
parser: '@typescript-eslint/parser',
sourceType: 'module',
},
plugins: ['vue', '@typescript-eslint'],
globals: {
defineProps: 'readonly',
defineEmits: 'readonly',
defineExpose: 'readonly',
withDefaults: 'readonly',
},
rules: {
camelcase: ['warn', {properties: 'never'}],
'vue/no-mutating-props': 'warn',
'standard/no-callback-literal': 0
// 'indent': [2, 2, {
// 'SwitchCase': 1
// }],
},
overrides: [
{
files: ['src/api/**/*.ts'],
rules: {
camelcase: 'off',
},
},
],
};
TypeScript
1
https://gitee.com/suqa/im-mobile-web.git
git@gitee.com:suqa/im-mobile-web.git
suqa
im-mobile-web
im-mobile-web
master

搜索帮助