Skip to content

Commit

Permalink
feat: update to vscode 1.65.0 with node 16 and migrate ip api
Browse files Browse the repository at this point in the history
  • Loading branch information
muuvmuuv committed Mar 7, 2022
1 parent d5b7830 commit 29bf814
Show file tree
Hide file tree
Showing 24 changed files with 2,484 additions and 3,747 deletions.
2 changes: 1 addition & 1 deletion .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,4 @@ trim_trailing_whitespace = true
end_of_line = lf

[*.md]
trim_trailing_whitespace = false
trim_trailing_whitespace = false
36 changes: 36 additions & 0 deletions .eslintrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
{
"root": true,
"parserOptions": {
"ecmaVersion": 2020,
"sourceType": "module"
},
"env": {
"node": true
},
"extends": ["eslint:recommended", "plugin:unicorn/recommended", "prettier"],
"rules": {
"unicorn/prefer-module": "off",
"unicorn/prefer-node-protocol": "off"
},
"ignorePatterns": ["dist", "out", "tmp"],
"overrides": [
{
"files": ["*.ts"],
"parserOptions": {
"project": "tsconfig.json"
},
"extends": ["plugin:@typescript-eslint/recommended"],
"rules": {
"sort-imports": [
"error",
{
"ignoreCase": true,
"ignoreDeclarationSort": true,
"ignoreMemberSort": false,
"allowSeparatedGroups": true
}
]
}
}
]
}
115 changes: 0 additions & 115 deletions .eslintrc.json

This file was deleted.

2 changes: 0 additions & 2 deletions .npmrc

This file was deleted.

7 changes: 7 additions & 0 deletions .prettierrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"semi": false,
"printWidth": 90,
"trailingComma": "all",
"singleQuote": true,
"proseWrap": "always"
}
9 changes: 0 additions & 9 deletions .prettierrc.json

This file was deleted.

2 changes: 1 addition & 1 deletion .release-it.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,4 +26,4 @@
"infile": "CHANGELOG.md"
}
}
}
}
10 changes: 3 additions & 7 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,17 +7,13 @@
"type": "extensionHost",
"request": "launch",
"preLaunchTask": "${defaultBuildTask}",
"internalConsoleOptions": "openOnFirstSessionStart",
"args": [
"--extensionDevelopmentPath=${workspaceFolder}",
"--extensions-dir=${workspaceFolder}/tmp/ext",
"--user-data-dir=${workspaceFolder}/tmp/data",
"--enable-proposed-api=muuvmuuv.vscode-sundial",
"--extensionDevelopmentPath=${workspaceFolder}",
"${workspaceFolder}/testProject"
],
"outFiles": [
"${workspaceFolder}/dist/**/*.js"
]
"outFiles": ["${workspaceFolder}/dist/*.js"]
}
]
}
}
2 changes: 1 addition & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1 +1 @@
{}
{}
5 changes: 4 additions & 1 deletion .vscode/tasks.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,13 @@
"endsPattern": "^.*?build finished"
}
},
"presentation": {
"reveal": "never"
},
"group": {
"kind": "build",
"isDefault": true
}
}
]
}
}
Loading

0 comments on commit 29bf814

Please sign in to comment.