提交 e409827a 编写于 作者: ibizdev's avatar ibizdev

chitanda 发布系统代码 [TrainSys,网页端]

上级 c934a85b
dist
node_modules
public
vite.config.ts
module.exports = {
root: true,
env: {
browser: true,
es2021: true,
},
extends: [
'airbnb-base',
'plugin:vue/recommended',
'plugin:prettier/recommended',
],
parser: 'vue-eslint-parser',
parserOptions: {
parser: '@typescript-eslint/parser',
ecmaFeatures: {
jsx: true,
},
ecmaVersion: 'latest',
sourceType: 'module',
},
plugins: ['vue', '@typescript-eslint'],
rules: {
'no-console': process.env.NODE_ENV === 'production' ? 'warn' : 'off',
'no-debugger': process.env.NODE_ENV === 'production' ? 'warn' : 'off',
'no-undef': [0],
'no-plusplus': ['error', { allowForLoopAfterthoughts: true }], // 禁止使用++,--
'class-methods-use-this': [0], // 强制未使用到 this 的对象方法改为静态
'prefer-destructuring': [0],
'import/no-unresolved': [0],
'no-underscore-dangle': [0], // 禁止使用下划线开头的变量名
'consistent-return': [0], // return 后面是否允许省略
'func-names': [0], // 函数表达式必须有名字
'import/extensions': [0], // 引入文件时必须制定后缀
'import/prefer-default-export': [0], // 关闭首选默认导出
'vue/no-setup-props-destructure': [0],
'vue/require-default-prop': [0], // props 非必填参数必须给默认值
'no-unused-vars': ['error', { argsIgnorePattern: '^_' }],
'@typescript-eslint/no-unused-vars': ['error', { argsIgnorePattern: '^_' }],
'@typescript-eslint/no-inferrable-types': [0],
'@typescript-eslint/no-explicit-any': ['error'],
},
};
# Logs
logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
pnpm-debug.log*
lerna-debug.log*
node_modules
dist
dist-ssr
*.local
# Editor directories and files
.idea
.DS_Store
*.suo
*.ntvs*
*.njsproj
*.sln
*.sw?
# 链接的本地模型文件夹
public/model*
# rollup 插件包分析文件
stats.html
\ No newline at end of file
# 起始格式化间隔
tabWidth: 2
# 使用单引号
singleQuote: true
# jsx 中使用单引号
jsxSingleQuote: true
# 对象中的 key 是否需要引号。as-needed: 只有在必须时才要
quoteProps: as-needed
# 每行结尾是否需要分号
trailingComma: all
# 括号中参数前后补充空格
bracketSpacing: true
# 箭头函数,参数是否添加括号
arrowParens: avoid
# jsx 元素最后末尾的 > ,换行放置
bracketSameLine: false
\ No newline at end of file
root: true
extends:
[
'stylelint-config-standard',
'stylelint-config-standard-scss',
'stylelint-config-recess-order',
'stylelint-config-prettier',
]
rules:
annotation-no-unknown: null
color-no-invalid-hex: true
function-name-case: null # 强制样式方法名称小写或大写
no-duplicate-selectors: null
scss/dollar-variable-pattern: null
scss/at-function-pattern: null
scss/dollar-variable-empty-line-before: null # 变量声明之间不可以有空白行
Markdown 格式
0% or
您添加了 0 到此讨论。请谨慎行事。
先完成此消息的编辑!
想要评论请 注册