This repository was archived by the owner on Apr 17, 2023. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +8
-3
lines changed Expand file tree Collapse file tree 3 files changed +8
-3
lines changed Original file line number Diff line number Diff line change 40
40
},
41
41
"python.linting.enabled" : true ,
42
42
"python.linting.pylintEnabled" : true ,
43
- "python.linting.mypyEnabled" : true
43
+ "python.linting.mypyEnabled" : true ,
44
+ "[toml]" : {
45
+ "editor.defaultFormatter" : " tamasfe.even-better-toml"
46
+ }
44
47
}
Original file line number Diff line number Diff line change 1
1
# Twitter Video Tools
2
+
2
3
[ ![ PyPI version] ( https://badge.fury.io/py/twitter-video-tools.svg )] ( https://badge.fury.io/py/twitter-video-tools )
3
4
[ ![ Test] ( https://github.com/code-yeongyu/twitter_video_tools/actions/workflows/test.yaml/badge.svg?branch=master )] ( https://github.com/code-yeongyu/twitter_video_tools/actions/workflows/test.yaml )
4
5
[ ![ codecov] ( https://codecov.io/gh/code-yeongyu/twitter_video_tools/branch/master/graph/badge.svg?token=97K8BBWOH7 )] ( https://codecov.io/gh/code-yeongyu/twitter_video_tools )
@@ -43,6 +44,7 @@ gh repo clone code-yeongyu/twitter_video_tools
43
44
python3 -m pip install poetry
44
45
poetry install # install dependencies
45
46
code --install-extension emeraldwalk.RunOnSave # to force single quote
47
+ code --install-extension tamasfe.even-better-toml # for handling toml
46
48
```
47
49
48
50
Done!
Original file line number Diff line number Diff line change @@ -108,5 +108,5 @@ exclude = ["**/node_modules", "**/__pycache__"]
108
108
defineConstant = { DEBUG = true }
109
109
useLibraryCodeForTypes = true
110
110
verboseOutput = false
111
- reportMissingTypeStubs = true # even for 3rd party modules, it's required to create type stubs
112
- reportUnknownMemberType = false # for no typed modules
111
+ reportMissingTypeStubs = true # even for 3rd party modules, it's required to create type stubs
112
+ reportUnknownMemberType = false # for no typed modules
You can’t perform that action at this time.
0 commit comments