1 Star 0 Fork 19

hero/innospots-page

forked from innospots/innospots-page 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
.eslintrc.js 838 Bytes
一键复制 编辑 原始数据 按行查看 历史
fuling 提交于 2022-09-28 09:58 . 应用组件升级
const fs = require('fs');
const path = require('path');
// const prettierOptions = JSON.parse(
// fs.readFileSync(path.resolve(__dirname, '.prettierrc'), 'utf8'),
// );
module.exports = {
extends: ['react-app'],
plugins: ['jsdoc'],
rules: {
// 'prettier/prettier': ['error', prettierOptions],
'no-restricted-imports': [
'error',
{
paths: [
{
name: 'lodash',
message: 'suggest import xxx from `lodash/xxx`',
}
],
},
],
},
parserOptions: {
ecmaVersion: 2018,
sourceType: 'module',
ecmaFeatures: {
jsx: true,
},
project: './tsconfig.json',
tsconfigRootDir: __dirname,
},
overrides: [
{
files: ['**/*.ts?(x)'],
// rules: { 'prettier/prettier': ['warn', prettierOptions] },
},
],
};
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/worksmart/innospots-page.git
git@gitee.com:worksmart/innospots-page.git
worksmart
innospots-page
innospots-page
develop_1.2.0_alpha

搜索帮助