Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix eslint #378

Merged
merged 29 commits into from
Sep 24, 2021
Merged
Show file tree
Hide file tree
Changes from 5 commits
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
1da7ba9
refactor: 使用腾讯 eslint 规范
Aug 26, 2021
63340a5
fix: package-lock.json 被忽略提交
Aug 27, 2021
cc38a00
feat: 修复eslint代码规范
Aug 27, 2021
e6438dc
feat: 修复eslint代码规范问题
Aug 30, 2021
f051cec
feat: 修复eslint代码规范问题
Aug 31, 2021
76e792d
refactor: 修改cr问题
Sep 18, 2021
dd8f554
refactor: 修改cr问题
Sep 22, 2021
6cb73f2
refactor: 解决 cr 问题
Sep 22, 2021
dd21824
fix: show no such remote
Sep 22, 2021
c26b26a
Merge pull request #379 from Tencent/feature/blurooo_#210
xqxian Sep 23, 2021
7c2181e
refactor: 解决 cr 问题
Sep 23, 2021
5beb2cf
refactor: 使用腾讯 eslint 规范
Aug 26, 2021
df7926c
fix: package-lock.json 被忽略提交
Aug 27, 2021
7b200d3
feat: 修复eslint代码规范
Aug 27, 2021
6bb4c53
feat: 修复eslint代码规范问题
Aug 30, 2021
c9daaea
feat: 修复eslint代码规范问题
Aug 31, 2021
96e459d
refactor: 修改cr问题
Sep 18, 2021
d96c0e0
refactor: 修改cr问题
Sep 22, 2021
8d67d80
refactor: 解决 cr 问题
Sep 22, 2021
f5c45e7
refactor: 解决 cr 问题
Sep 23, 2021
12b6132
Merge branch 'refactor/20210826_fix_eslint' of github.com:ljw528/fefl…
Sep 23, 2021
f232837
refactor: 解决 cr 问题
Sep 23, 2021
971d714
refactor: 解决 cr 问题
Sep 23, 2021
23ff4b9
refactor: 解决 cr 问题
Sep 23, 2021
f66c71f
fix: ts 配置
Sep 23, 2021
cc8a1ce
refactor: 解决 ts 报错
Sep 23, 2021
43026d4
refactor: 解决 lerna run test 命令的报错
Sep 24, 2021
168f029
refactor: 解决 cr 问题
Sep 24, 2021
16c9d97
refactor: 解决 cr 问题
Sep 24, 2021
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .eslintignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
packages/feflow-plugin-devtool/src/templates
packages/*/lib
20 changes: 6 additions & 14 deletions .eslintrc.js
Original file line number Diff line number Diff line change
@@ -1,15 +1,7 @@
module.exports = {
parser: '@typescript-eslint/parser',
extends: [
'plugin:@typescript-eslint/recommended',
'prettier/@typescript-eslint',
'plugin:prettier/recommended',
],
parserOptions: {
ecmaVersion: 2018,
sourceType: 'module',
module.exports = {
extends: ['eslint-config-tencent', 'eslint-config-tencent/ts', 'eslint-config-tencent/prettier'],
parserOptions: {
project: './tsconfig.eslint.json',
},
rules: {

},
};
rules: {},
};
3 changes: 1 addition & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,11 @@
.DS_Store
node_modules
*.log
*-lock.json
coverage/
packages/*/lib
.vscode
**/.nyc_output
tmp
dist
packages/feflow-cli/bin/run
tnpm
tnpm
Loading