Skip to content

Commit 53397fa

Browse files
committedDec 24, 2019
fix linting with vscode settings.json change
·
v0.19.40.2.0
1 parent 67195b5 commit 53397fa

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

51 files changed

+635
-648
lines changed
 

‎.vscode/settings.json

Lines changed: 16 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,18 @@
11
{
2-
"editor.formatOnSave": true,
3-
"eslint.autoFixOnSave": true,
4-
"eslint.validate": ["javascript", { "language": "typescript", "autoFix": true }],
5-
// Turn off tsc task auto detection since we have the necessary tasks as npm scripts
6-
"files.exclude": {
7-
"build": false // set this to true to hide the "out" folder with the compiled JS files
8-
},
9-
"search.exclude": {
10-
"build": true // set this to false to include "out" folder in search results
11-
},
12-
// styles
13-
"workbench.colorCustomizations": {
14-
"activityBar.background": "#000000",
15-
"titleBar.activeBackground": "#000000",
16-
"titleBar.activeForeground": "#FFFFFF"
17-
},
18-
"cSpell.ignoreWords": ["camelcase"],
19-
"files.exclude": {
20-
".vscode-test/**": true,
21-
"*.vsix": true
22-
}
2+
"editor.formatOnSave": true,
3+
"editor.codeActionsOnSave": {
4+
"source.organizeImports": true,
5+
"source.fixAll": true
6+
},
7+
"files.exclude": {
8+
"build": false, // set this to true to hide the "out" folder with the compiled JS files
9+
".vscode-test/**": true,
10+
"*.vsix": true
11+
},
12+
// styles
13+
"workbench.colorCustomizations": {
14+
"activityBar.background": "#000000",
15+
"titleBar.activeBackground": "#000000",
16+
"titleBar.activeForeground": "#FFFFFF"
17+
}
2318
}

‎web-app/.storybook/addons.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
import '@storybook/addon-actions/register'
22
import '@storybook/addon-knobs/register'
3-
import '@storybook/addon-links/register'
3+
import '@storybook/addon-links/register'

0 commit comments

Comments
 (0)
Please sign in to comment.