4 Star 11 Fork 0

kiligyss/高校科研管理系统

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
.eslintrc.js 2.48 KB
一键复制 编辑 原始数据 按行查看 历史
Wisper 提交于 2021-10-23 15:22 . eslint规范
module.exports = {
root: true,
env: {
node: true
},
'extends': [
'plugin:vue/strongly-recommended',
'@vue/standard'
],
rules: {
'no-console': 'off', // 可以调用console对象的方法
'no-debugger': process.env.NODE_ENV === 'production' ? 'error' : 'off', // 开发过程中允许调试
'generator-star-spacing': 'off', // 生成器函数*的前后空格
'no-mixed-operators': 0, // 可以连续使用不含运算符的不同运算符
'vue/max-attributes-per-line': [// 规定每行属性个数
2,
{
'singleline': 5,
'multiline': {
'max': 1,
'allowFirstLine': false
}
}
],
'vue/attribute-hyphenation': 0, // 在自定义组件上可以使用不带连字符的属性名称
'vue/html-self-closing': 0, // 禁止html标签自动闭合
'vue/component-name-in-template-casing': 0, // 不警告 Vue.js 模板中除配置的大小写之外的标签名称
'vue/html-closing-bracket-spacing': 0, // 不关闭>标签括号之前强制执行一致的间距样式。
'vue/singleline-html-element-content-newline': 0, // 在单行元素的内容前后不强制换行
'vue/no-unused-components': 0, // 允许注册模板中未使用的组件
'vue/multiline-html-element-content-newline': 0, // 在多行元素的内容前后不强制换行
'vue/no-use-v-if-with-v-for': 0, // 允许将v-for指令与v-if同一元素上的指令一起使用
'vue/html-closing-bracket-newline': 0, // 允许位于配置位置以外的位置的右​​尖括号
'vue/no-parsing-error': 0, // 禁止<template>通过解析<script>. 然后报告语法错误
'no-tabs': 0, // 可以用tab代替空格
'quotes': [// 引号类型
2,
'single',
{
'avoidEscape': true,
'allowTemplateLiterals': true
}
],
'semi': [
2,
'never', // 语句不强制分号结尾
{
'beforeStatementContinuationChars': 'never'
}
],
'no-delete-var': 2, // 不能对var声明的变量使用delete操作符
'prefer-const': [// 首选const
2,
{
'ignoreReadBeforeAssign': false
}
],
'template-curly-spacing': 'off', // 不允许大括号内的空格
'indent': 'off'// 关闭缩进风格
},
parserOptions: {
parser: 'babel-eslint'
},
overrides: [
{
files: [
'**/__tests__/*.{j,t}s?(x)',
'**/tests/unit/**/*.spec.{j,t}s?(x)'
],
env: {
jest: true
}
}
]
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/kiligyss/Management-of-Scientific-Research-in-Universities.git
[email protected]:kiligyss/Management-of-Scientific-Research-in-Universities.git
kiligyss
Management-of-Scientific-Research-in-Universities
高校科研管理系统
master

搜索帮助