Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commitc4d38e9

Browse files
authored
Merge pull requestcoderoad#168 from ShMcK/udpate/prettier-2.0
update to prettier 2.0. lint
2 parents41dca9b +223e176 commitc4d38e9

File tree

26 files changed

+1937
-914
lines changed

26 files changed

+1937
-914
lines changed

‎.prettierrc.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,6 @@ module.exports = {
44
singleQuote:true,
55
tabWidth:2,
66
trailingComma:'all',
7+
arrowParens:'always',
8+
endOfLine:'lf',
79
}

‎.vscode/launch.json

Lines changed: 21 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -3,33 +3,25 @@
33
// Hover to view descriptions of existing attributes.
44
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
55
{
6-
"version":"0.2.0",
7-
"configurations": [{
8-
"name":"Run Extension",
9-
"type":"extensionHost",
10-
"request":"launch",
11-
"runtimeExecutable":"${execPath}",
12-
"args": [
13-
"--extensionDevelopmentPath=${workspaceFolder}"
14-
],
15-
"outFiles": [
16-
"${workspaceFolder}/out/**/*.js"
17-
],
18-
"preLaunchTask":"npm: watch"
19-
},
20-
{
21-
"name":"Extension Tests",
22-
"type":"extensionHost",
23-
"request":"launch",
24-
"runtimeExecutable":"${execPath}",
25-
"args": [
26-
"--extensionDevelopmentPath=${workspaceFolder}",
27-
"--extensionTestsPath=${workspaceFolder}/out/test"
28-
],
29-
"outFiles": [
30-
"${workspaceFolder}/out/test/**/*.js"
31-
],
32-
"preLaunchTask":"npm: watch"
33-
}
34-
]
6+
"version":"0.2.0",
7+
"configurations": [
8+
{
9+
"name":"Run Extension",
10+
"type":"extensionHost",
11+
"request":"launch",
12+
"runtimeExecutable":"${execPath}",
13+
"args": ["--extensionDevelopmentPath=${workspaceFolder}"],
14+
"outFiles": ["${workspaceFolder}/out/**/*.js"],
15+
"preLaunchTask":"npm: watch"
16+
},
17+
{
18+
"name":"Extension Tests",
19+
"type":"extensionHost",
20+
"request":"launch",
21+
"runtimeExecutable":"${execPath}",
22+
"args": ["--extensionDevelopmentPath=${workspaceFolder}","--extensionTestsPath=${workspaceFolder}/out/test"],
23+
"outFiles": ["${workspaceFolder}/out/test/**/*.js"],
24+
"preLaunchTask":"npm: watch"
25+
}
26+
]
3527
}

‎.vscode/tasks.json

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,20 @@
11
// See https://go.microsoft.com/fwlink/?LinkId=733558
22
// for the documentation about the tasks.json format
33
{
4-
"version":"2.0.0",
5-
"tasks": [
6-
{
7-
"type":"npm",
8-
"script":"watch",
9-
"problemMatcher":"$tsc-watch",
10-
"isBackground":true,
11-
"presentation": {
12-
"reveal":"never"
13-
},
14-
"group": {
15-
"kind":"build",
16-
"isDefault":true
17-
}
18-
}
19-
]
4+
"version":"2.0.0",
5+
"tasks": [
6+
{
7+
"type":"npm",
8+
"script":"watch",
9+
"problemMatcher":"$tsc-watch",
10+
"isBackground":true,
11+
"presentation": {
12+
"reveal":"never"
13+
},
14+
"group": {
15+
"kind":"build",
16+
"isDefault":true
17+
}
18+
}
19+
]
2020
}

‎CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@ Check [Keep a Changelog](http://keepachangelog.com/) for recommendations on how
66

77
##[Unreleased]
88

9-
- Initial release
9+
- Initial release

‎jest.config.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
module.exports={
2-
preset:'ts-jest',
3-
verbose:true,
4-
testPathIgnorePatterns:['build'],
2+
preset:'ts-jest',
3+
verbose:true,
4+
testPathIgnorePatterns:['build'],
55
}

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp