1 Star 0 Fork 0

刘威/front-starter

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
.eslintrc.js 1.53 KB
一键复制 编辑 原始数据 按行查看 历史
刘威 提交于 2021-12-18 21:59 . build: 🏹 项目基础结构搭建完成
module.exports = {
root: true,
parserOptions: {
parser: '@typescript-eslint/parser',
},
env: {
browser: true,
es6: true,
node: true,
},
plugins: ['prettier', 'vue', '@typescript-eslint/eslint-plugin'],
extends: [
'plugin:vue/vue3-essential',
'eslint:recommended',
'@vue/typescript/recommended',
'@vue/prettier',
'@vue/prettier/@typescript-eslint',
],
rules: {
'prettier/prettier': 'error',
'no-unused-vars': 'off',
'@typescript-eslint/no-explicit-any': 'off',
'@typescript-eslint/member-delimiter-style': 'off',
'@typescript-eslint/no-var-requires': 'off',
'@typescript-eslint/ban-ts-ignore': 'off',
'@typescript-eslint/class-name-casing': 'off',
'vue/valid-v-slot': 'off',
'no-debugger': 'off',
'vue/experimental-script-setup-vars': 'off',
'@typescript-eslint/explicit-module-boundary-types': 'off',
'@typescript-eslint/camelcase': 'off',
'@typescript-eslint/no-non-null-assertion': 'off',
'@typescript-eslint/no-unused-vars': 'off',
'@typescript-eslint/ban-ts-comment': 'off',
'@typescript-eslint/no-empty-interface': 'off',
// 'vue/no-mutating-props': 'off',
},
overrides: [
{
files: [
'**/tests/*.{j,t}s?(x)',
'**/tests/**/*.spec.{j,t}s?(x)',
'**/tests/*.spec.{j,t}s?(x)',
],
env: {
mocha: true,
},
},
],
globals: {
defineProps: 'readonly',
defineEmits: 'readonly',
defineExpose: 'readonly',
withDefaults: 'readonly',
NodeListOf: 'readonly',
},
};
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/liuweiyibai/front-starter.git
git@gitee.com:liuweiyibai/front-starter.git
liuweiyibai
front-starter
front-starter
master

搜索帮助