Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Merge office-addin-taskpane/master
NOTE: Also ran lint:fix and addressed errors and ran prettier
- Loading branch information
Showing
with
2,307 additions
and 973 deletions.
- +17 −0 .eslintrc.json
- +3 −1 .vscode/extensions.json
- +8 −0 .vscode/settings.json
- +17 −1 .vscode/tasks.json
- +2,212 −935 package-lock.json
- +22 −16 package.json
- +12 −7 src/commands/commands.ts
- +12 −10 src/functions/functions.ts
- +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" | ||
| ] | ||
| } |
| @@ -0,0 +1,8 @@ | ||
| { | ||
| "eslint.validate": [ | ||
| "javascript", | ||
| "javascriptreact", | ||
| "typescript" | ||
| ] | ||
| } | ||
|
|
Oops, something went wrong.