1 Star 0 Fork 4

山净枫健康互联网数字化商城/tang-vue

forked from 糖猫猫/tang-vue 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
.eslintrc.cjs 1.65 KB
一键复制 编辑 原始数据 按行查看 历史
糖猫猫 提交于 2023-10-30 17:44 . 设置 vue/max-attributes-per-line
/* eslint-env node */
module.exports = {
root: true,
env: {
browser: true,
es2021: true,
node: true
},
extends: [
'eslint:recommended',
'plugin:@typescript-eslint/recommended',
'plugin:vue/vue3-essential'
],
overrides: [
{
env: {
node: true
},
files: [
'.eslintrc.{js,cjs}'
],
parserOptions: {
'sourceType': 'script'
}
}
],
parser: 'vue-eslint-parser',
parserOptions: {
'ecmaVersion': 'latest',
'parser': '@typescript-eslint/parser',
'sourceType': 'module'
},
plugins: [
'@typescript-eslint',
'vue'
],
'rules': {
'indent': [
'error',
2
],
'linebreak-style': [
'error',
'unix'
],
'quotes': [
'error',
'single'
],
'semi': [
'error',
'never'
],
'no-undef': 'off', // https://eslint.org/docs/latest/rules/no-undef
'vue/multi-word-component-names': 'off', // https://eslint.vuejs.org/rules/multi-word-component-names.html
'vue/no-deprecated-v-on-native-modifier': 'off', // https://eslint.vuejs.org/rules/no-deprecated-v-on-native-modifier.html
'vue/max-attributes-per-line': ['error', {
'singleline': {
max: 2,
},
'multiline': {
'max': 2
}
}], // https://eslint.vuejs.org/rules/max-attributes-per-line.html
'@typescript-eslint/no-explicit-any': 'off', // https://typescript-eslint.io/rules/no-explicit-any/
'@typescript-eslint/ban-types': 'off', // https://typescript-eslint.io/rules/ban-types/
'@typescript-eslint/no-unused-vars': 'off', // https://typescript-eslint.io/rules/no-unused-vars/
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
TypeScript
1
https://gitee.com/sjifcom/tang-vue.git
git@gitee.com:sjifcom/tang-vue.git
sjifcom
tang-vue
tang-vue
master

搜索帮助