1 Star 0 Fork 0

阿炸克斯/康米文档

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
.eslintrc.js 1.29 KB
一键复制 编辑 原始数据 按行查看 历史
阿炸克斯 提交于 2023-01-11 15:01 . feat(init): 工程初始化
const javascriptLints = require('./lint/eslint/javascript');
const typescriptLints = require('./lint/eslint/typescript');
const reactLints = require('./lint/eslint/react');
module.exports = {
env: {
browser: true,
commonjs: true,
es2021: true,
},
extends: [
'eslint:recommended',
'plugin:react/recommended',
'plugin:react-hooks/recommended',
'plugin:@typescript-eslint/recommended',
'prettier',
],
parser: '@typescript-eslint/parser',
parserOptions: {
ecmaFeatures: {
jsx: true,
},
ecmaVersion: 'latest',
project: './tsconfig.json',
},
plugins: ['react', '@typescript-eslint'],
settings: {
// support import modules from TypeScript files in JavaScript files
'import/resolver': {
node: {
extensions: ['.js', '.cjs', '.mjs', '.jsx', '.ts', '.tsx', '.d.ts'],
},
},
'import/parsers': {
'@typescript-eslint/parser': ['.ts', '.tsx', '.d.ts'],
},
'import/extensions': ['.js', '.cjs', '.mjs', '.jsx', '.ts', '.tsx', '.d.ts'],
'import/external-module-folders': ['node_modules', 'node_modules/@types'],
polyfills: ['fetch', 'Promise', 'URL', 'object-assign'],
react: {
version: 'detect',
},
},
rules: {
...javascriptLints,
...reactLints,
...typescriptLints,
},
};
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/lvyueyang/kangmi-doc.git
git@gitee.com:lvyueyang/kangmi-doc.git
lvyueyang
kangmi-doc
康米文档
master

搜索帮助