-
-
Notifications
You must be signed in to change notification settings - Fork 83
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #507 from estruyf/dev
- Loading branch information
Showing
435 changed files
with
28,275 additions
and
14,663 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
{ | ||
"root": true, | ||
"parser": "@typescript-eslint/parser", | ||
"plugins": ["@typescript-eslint"], | ||
"extends": [ | ||
"eslint:recommended", | ||
"plugin:@typescript-eslint/eslint-recommended", | ||
"plugin:@typescript-eslint/recommended" | ||
], | ||
"ignorePatterns": ["./**/*.js", "./webpack/*.config.js", "./e2e/*.ts"], | ||
"rules": { | ||
"no-throw-literal": "error", | ||
"no-unused-expressions": "error", | ||
"curly": "error", | ||
"class-methods-use-this": "warn" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
auto-install-peers = true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
{ | ||
"printWidth": 100, | ||
"tabWidth": 2, | ||
"semi": true, | ||
"singleQuote": true, | ||
"trailingComma": "none" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,5 @@ | ||
{ | ||
// See http://go.microsoft.com/fwlink/?LinkId=827846 | ||
// for the documentation about the extensions.json format | ||
"recommendations": [ | ||
"ms-vscode.vscode-typescript-tslint-plugin", | ||
"eliostruyf.vscode-typescript-exportallmodules" | ||
] | ||
} | ||
// See http://go.microsoft.com/fwlink/?LinkId=827846 | ||
// for the documentation about the extensions.json format | ||
"recommendations": ["eliostruyf.vscode-typescript-exportallmodules", "esbenp.prettier-vscode"] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,52 +1,52 @@ | ||
// Place your settings in this file to overwrite default and user settings. | ||
{ | ||
"files.exclude": { | ||
"out": false // set this to true to hide the "out" folder with the compiled JS files | ||
"files.exclude": { | ||
"out": false // set this to true to hide the "out" folder with the compiled JS files | ||
}, | ||
"search.exclude": { | ||
"out": true // set this to false to include "out" folder in search results | ||
}, | ||
// Turn off tsc task auto detection since we have the necessary tasks as npm scripts | ||
"typescript.tsc.autoDetect": "off", | ||
"eliostruyf.writingstyleguide.terms.isDisabled": true, | ||
"eliostruyf.writingstyleguide.biasFree.isDisabled": true, | ||
"squarl.groups": [ | ||
{ | ||
"id": "dashboard", | ||
"name": "Dashboard" | ||
}, | ||
"search.exclude": { | ||
"out": true // set this to false to include "out" folder in search results | ||
{ | ||
"id": "panel", | ||
"name": "Panel" | ||
} | ||
], | ||
"squarl.bookmarks": [ | ||
{ | ||
"name": "App.tsx", | ||
"path": "src/dashboardWebView/components/App.tsx", | ||
"description": "Start of dashboard", | ||
"type": "file", | ||
"groupId": "dashboard" | ||
}, | ||
// Turn off tsc task auto detection since we have the necessary tasks as npm scripts | ||
"typescript.tsc.autoDetect": "off", | ||
"eliostruyf.writingstyleguide.terms.isDisabled": true, | ||
"eliostruyf.writingstyleguide.biasFree.isDisabled": true, | ||
"squarl.groups": [ | ||
{ | ||
"id": "dashboard", | ||
"name": "Dashboard" | ||
}, | ||
{ | ||
"id": "panel", | ||
"name": "Panel" | ||
} | ||
], | ||
"squarl.bookmarks": [ | ||
{ | ||
"name": "App.tsx", | ||
"path": "src/dashboardWebView/components/App.tsx", | ||
"description": "Start of dashboard", | ||
"type": "file", | ||
"groupId": "dashboard" | ||
}, | ||
{ | ||
"name": "ViewPanel.tsx", | ||
"path": "src/panelWebView/ViewPanel.tsx", | ||
"description": "Start of panel", | ||
"type": "file", | ||
"groupId": "panel" | ||
}, | ||
{ | ||
"name": "styles.css", | ||
"path": "src/panelWebView/styles.css", | ||
"description": "Panel styles", | ||
"type": "file", | ||
"groupId": "panel" | ||
}, | ||
{ | ||
"name": "settings.ts", | ||
"path": "src/constants/settings.ts", | ||
"description": "Settings names", | ||
"type": "file" | ||
} | ||
], | ||
} | ||
{ | ||
"name": "ViewPanel.tsx", | ||
"path": "src/panelWebView/ViewPanel.tsx", | ||
"description": "Start of panel", | ||
"type": "file", | ||
"groupId": "panel" | ||
}, | ||
{ | ||
"name": "styles.css", | ||
"path": "src/panelWebView/styles.css", | ||
"description": "Panel styles", | ||
"type": "file", | ||
"groupId": "panel" | ||
}, | ||
{ | ||
"name": "settings.ts", | ||
"path": "src/constants/settings.ts", | ||
"description": "Settings names", | ||
"type": "file" | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,28 +1,28 @@ | ||
// See https://go.microsoft.com/fwlink/?LinkId=733558 | ||
// for the documentation about the tasks.json format | ||
{ | ||
"version": "2.0.0", | ||
"tasks": [ | ||
{ | ||
"type": "npm", | ||
"script": "watch", | ||
"problemMatcher": "$tsc-watch", | ||
"isBackground": true, | ||
"presentation": { | ||
"reveal": "never" | ||
}, | ||
"group": { | ||
"kind": "build", | ||
"isDefault": true | ||
} | ||
}, | ||
{ | ||
"type": "npm", | ||
"script": "build:ext", | ||
"group": { | ||
"kind": "build", | ||
"isDefault": true | ||
} | ||
} | ||
] | ||
"version": "2.0.0", | ||
"tasks": [ | ||
{ | ||
"type": "npm", | ||
"script": "watch", | ||
"problemMatcher": "$tsc-watch", | ||
"isBackground": true, | ||
"presentation": { | ||
"reveal": "never" | ||
}, | ||
"group": { | ||
"kind": "build", | ||
"isDefault": true | ||
} | ||
}, | ||
{ | ||
"type": "npm", | ||
"script": "build:ext", | ||
"group": { | ||
"kind": "build", | ||
"isDefault": true | ||
} | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.