Skip to content
This repository was archived by the owner on May 4, 2023. It is now read-only.

Commit 0bf4890

Browse files
Merge pull request #58 from codiga/feat/tests-n-fixes
feat: JS/TS support for rules and more tests
2 parents 4013ae4 + 21d81d8 commit 0bf4890

30 files changed

Lines changed: 8992 additions & 313 deletions

.eslintrc.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@
99
"@typescript-eslint"
1010
],
1111
"rules": {
12-
"@typescript-eslint/naming-convention": "warn",
12+
"@typescript-eslint/naming-convention": "off",
1313
"@typescript-eslint/semi": "warn",
14-
"curly": "warn",
14+
"curly": "off",
1515
"eqeqeq": "warn",
1616
"no-throw-literal": "warn",
1717
"semi": "off"

.github/workflows/main.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,8 @@ jobs:
1212
- name: Install Node.js
1313
uses: actions/setup-node@v1
1414
with:
15-
node-version: 10.x
15+
node-version: 16.x
1616
- run: npm install
17-
- run: npm install -g npm-run-all
1817
- name: Run tests
1918
uses: GabrielBB/xvfb-action@v1
2019
if: runner.os != 'Linux'

.github/workflows/release.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@ jobs:
1717
with:
1818
node-version: 16.x
1919
- run: npm install
20-
- run: npm install -g npm-run-all
2120
- name: Run tests
2221
uses: GabrielBB/xvfb-action@v1
2322
if: runner.os != 'Linux'
@@ -34,7 +33,6 @@ jobs:
3433
with:
3534
node-version: 16.x
3635
- run: npm install
37-
- run: npm install -g npm-run-all
3836
- name: Publish
3937
run: npm run deploy
4038
env:

.vscode/launch.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
"request": "launch",
2020
"args": [
2121
"--extensionDevelopmentPath=${workspaceFolder}",
22-
"--extensionTestsPath=${workspaceFolder}/out/test/suite/index"
22+
"--extensionTestsPath=${workspaceFolder}/out/test/index"
2323
],
2424
"outFiles": ["${workspaceFolder}/out/test/**/*.js"],
2525
"preLaunchTask": "${defaultBuildTask}"

0 commit comments

Comments
 (0)