Skip to content
This repository was archived by the owner on Dec 23, 2021. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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: 1 addition & 1 deletion .prettierrc.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
trailingComma: "es5"
tabWidth: 4
semi: true
endOfLine: lf
endOfLine: auto
printWidth: 80
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -284,10 +284,10 @@
"lint:ts": "tslint -c tslint.json src/**/*.{ts,tsx}",
"lint:python": "pylint src",
"format": "npm-run-all format:*",
"format:ts": "prettier --write src/**/*.{css,ts,tsx}",
"format:ts": "prettier --config .prettierrc.yaml --write src/**/*.{css,ts,tsx}",
"format:python": "black src",
"check": "npm-run-all check:*",
"check:ts": "prettier --check src/**/*.{css,ts,tsx}",
"check:ts": "prettier --config .prettierrc.yaml --check src/**/*.{css,ts,tsx}",
"check:python": "black src --check",
"package": "vsce package"
},
Expand Down