Skip to content

Commit a7d50af

Browse files
author
Tyler Deemer
committed
Merged master
2 parents 2223fc8 + 71d8bb3 commit a7d50af

Some content is hidden

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

50 files changed

+5494
-3430
lines changed

.eslintignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
vscode.d.ts
2+
vscode.proposed.d.ts

.github/workflows/main.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ on:
1515
- created
1616
jobs:
1717
build:
18+
timeout-minutes: 10
1819
runs-on: ${{ matrix.os }}
1920
strategy:
2021
matrix:
@@ -48,6 +49,9 @@ jobs:
4849
with:
4950
node-version: 12.x
5051
- run: npm install
52+
- name: lint
53+
if: runner.os == 'Linux'
54+
run: npm run lint
5155
- run: npm run compile
5256
- name: npm test
5357
uses: GabrielBB/[email protected]

.gitignore

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@ node_modules/
22
.idea
33
*.iml
44
.vscode/**
5-
.vscode-test
6-
out
5+
.vscode-test/
6+
out/
7+
dist/
78
*.vsix
9+
vscode*.d.ts

.prettierrc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
{
2+
"endOfLine": "auto",
23
"singleQuote": false,
34
"trailingComma": "es5",
45
"printWidth": 120

.vscodeignore

Lines changed: 11 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,14 @@
1+
.github/**
12
.vscode/**
23
.vscode-test/**
3-
typings/**
4-
out/test/**
5-
test/**
6-
# src/**
7-
# **/*.map
4+
out/
5+
src/
6+
**/*.ts
7+
**/*.map
8+
**/*.cls
89
.gitignore
9-
tsconfig.json
10+
tsconfig*.json
11+
**/tslint.json
12+
**/.eslintrc.json
13+
node_modules/
14+
webpack.config.js

images/dark/refresh.svg

Lines changed: 0 additions & 1 deletion
This file was deleted.

images/light/refresh.svg

Lines changed: 0 additions & 1 deletion
This file was deleted.

0 commit comments

Comments
 (0)