3 Star 3 Fork 3

OurBMC/webui

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
.eslintrc.js 1.37 KB
一键复制 编辑 原始数据 按行查看 历史
喻柏炜 提交于 2023-11-28 17:11 . webui-vue: Add Ourbmc web basic version
module.exports = {
root: true,
plugins: ['@typescript-eslint', 'prettier'],
env: {
node: true,
browser: true,
jquery: true,
},
extends: [
'plugin:vue/recommended',
'eslint:recommended',
'@vue/prettier',
'@vue/typescript/recommended',
],
rules: {
'no-console': 'off',
'no-debugger': process.env.NODE_ENV === 'production' ? 'error' : 'off',
'prettier/prettier': [
'error',
{
singleQuote: true,
},
],
'vue/component-name-in-template-casing': ['error', 'kebab-case'],
'@typescript-eslint/no-this-alias': 'off',
'@typescript-eslint/explict-function-return-type': 'off',
},
parser: 'vue-eslint-parser',
overrides: [
{
// enable the rule specifically for TypeScript files
files: [
'**/__tests__/*.{j,t}s?(x)',
'**/tests/unit/**/*.spec.{j,t}s?(x)',
'*.ts',
'*.tsx',
'*.vue',
'*.js',
],
rules: {
'prefer-const': 'off',
'@typescript-eslint/no-var-requires': 'off',
'@typescript-eslint/explicit-module-boundary-types': 'off',
'@typescript-eslint/no-empty-function': 'off',
'@typescript-eslint/no-explicit-any': ['off'],
'@typescript-eslint/ban-ts-comment': ['off'],
'@typescript-eslint/no-non-null-assertion': 'off',
},
env: {
jest: true,
},
},
],
};
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/ourbmc/webui.git
git@gitee.com:ourbmc/webui.git
ourbmc
webui
webui
master

搜索帮助