Skip to content
Permalink
Browse files
Merge office-addin-taskpane/master
NOTE: Also ran lint:fix and addressed errors and ran prettier
  • Loading branch information
TCourtneyOwen committed Sep 15, 2019
1 parent 4a742f8 commit b9e00888799bff47fe4380ea4d3c38755a87c67b
Showing with 2,307 additions and 973 deletions.
  1. +17 −0 .eslintrc.json
  2. +3 −1 .vscode/extensions.json
  3. +8 −0 .vscode/settings.json
  4. +17 −1 .vscode/tasks.json
  5. +2,212 −935 package-lock.json
  6. +22 −16 package.json
  7. +12 −7 src/commands/commands.ts
  8. +12 −10 src/functions/functions.ts
  9. +4 −3 src/taskpane/taskpane.ts
@@ -0,0 +1,17 @@
{
"parser": "@typescript-eslint/parser",
"plugins": [
"@typescript-eslint"
],
"parserOptions": {
"ecmaVersion": 6,
"sourceType": "module",
"ecmaFeatures": {
"jsx": true
},
"project": "./tsconfig.json"
},
"extends": [
"eslint-config-office-addins"
]
}
@@ -5,7 +5,9 @@
// List of extensions which should be recommended for users of this workspace.
"recommendations": [
"msjsdiag.debugger-for-chrome",
"msjsdiag.debugger-for-edge"
"msjsdiag.debugger-for-edge",
"dbaeumer.vscode-eslint",
"esbenp.prettier-vscode"
],
// List of extensions recommended by VS Code that should not be recommended for users of this workspace.
"unwantedRecommendations": []
@@ -0,0 +1,8 @@
{
"eslint.validate": [
"javascript",
"javascriptreact",
"typescript"
]
}

@@ -74,6 +74,22 @@
},
"problemMatcher": []
},
{
"label": "Lint: Check for problems",
"type": "npm",
"script": "lint",
"problemMatcher": [
"$eslint-stylish"
]
},
{
"label": "Lint: Fix all auto-fixable problems",
"type": "npm",
"script": "lint:fix",
"problemMatcher": [
"$eslint-stylish"
]
},
{
"label": "Stop Debug",
"type": "npm",
@@ -94,6 +110,6 @@
"panel": "dedicated"
},
"problemMatcher": []
}
},
]
}

0 comments on commit b9e0088

Please sign in to comment.