Skip to content

Commit

Permalink
Merge pull request #105 from muno92/dependabot/npm_and_yarn/eslint-pl…
Browse files Browse the repository at this point in the history
…ugin-github-4.2.0

Bump eslint-plugin-github from 4.1.5 to 4.2.0
  • Loading branch information
muno92 authored Aug 12, 2021
2 parents 7c61115 + 42cefb2 commit 057caa0
Show file tree
Hide file tree
Showing 8 changed files with 206 additions and 173 deletions.
5 changes: 3 additions & 2 deletions .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -44,11 +44,12 @@
"semi": "off",
"@typescript-eslint/semi": ["error", "never"],
"@typescript-eslint/type-annotation-spacing": "error",
"@typescript-eslint/unbound-method": "error"
"@typescript-eslint/unbound-method": "error",
"i18n-text/no-en": "off"
},
"env": {
"node": true,
"es6": true,
"jest/globals": true
}
}
}
8 changes: 4 additions & 4 deletions dist/index.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/index.js.map

Large diffs are not rendered by default.

354 changes: 193 additions & 161 deletions package-lock.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
"@typescript-eslint/parser": "^4.29.1",
"@vercel/ncc": "^0.29.0",
"eslint": "^7.32.0",
"eslint-plugin-github": "^4.1.5",
"eslint-plugin-github": "^4.2.0",
"eslint-plugin-jest": "^24.4.0",
"jest": "^26.6.3",
"jest-circus": "^27.0.6",
Expand Down
2 changes: 1 addition & 1 deletion src/installer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import * as exec from '@actions/exec'
export class Installer {
//TODO check dotnet sdk in constructor
async install(): Promise<number> {
//ver 2021.2 depends on .NET 5
//ver 2021.2 requires .NET 5
return exec.exec(
'dotnet tool install -g JetBrains.ReSharper.GlobalTools --version 2021.1.5'
)
Expand Down
2 changes: 1 addition & 1 deletion src/main.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import * as core from '@actions/core'
import * as exec from '@actions/exec'
import {Installer} from './installer'
import path from 'path'
import {Report} from './report'
import path from 'path'

async function run(): Promise<void> {
try {
Expand Down
4 changes: 2 additions & 2 deletions src/report.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import {Issue, IssueTypes, Severity} from './issue'
import * as fs from 'fs'
import * as core from '@actions/core'
import * as fs from 'fs'
import * as htmlparser2 from 'htmlparser2'
import {Element, Node} from 'domhandler'
import {Issue, IssueTypes, Severity} from './issue'
import {issueCommand} from '@actions/core/lib/command'

export class Report {
Expand Down

0 comments on commit 057caa0

Please sign in to comment.