Skip to content

Commit

Permalink
Disabled annotations
Browse files Browse the repository at this point in the history
  • Loading branch information
yousufkalim committed Sep 15, 2022
1 parent cc710a3 commit 719c76b
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 8 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,12 @@ All notable changes to this project will be documented in this file.
> - Internal
> - Unreleased
## v2.0.7

#### Internal

- Disabled annotations as these are not accurate and are causing confusion

## v2.0.6

#### Enhancements
Expand Down
4 changes: 1 addition & 3 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.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "eslint-action",
"version": "2.0.6",
"version": "2.0.7",
"description": "Run ESLint on files changed in a pull request with inline error and warning annotations",
"author": "yousufkalim",
"license": "MIT",
Expand Down
4 changes: 1 addition & 3 deletions src/eslint.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,7 @@ export interface Inputs {
*/
export const runEslint = async (inputs: Inputs): Promise<void> => {
// Disabling annotations if user doesn't want to
if (!inputs.annotations) {
disableAnnotations();
}
disableAnnotations();

// Getting the changed files
const changedFiles = await getChangedFiles(inputs.token);
Expand Down

0 comments on commit 719c76b

Please sign in to comment.