Skip to content

Commit

Permalink
fix: fix lint errors
Browse files Browse the repository at this point in the history
  • Loading branch information
bubkoo committed Oct 12, 2024
1 parent 238e4bb commit 6e97bab
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
5 changes: 4 additions & 1 deletion eslint.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@ export default config([
files: ['src/**/*.js', 'src/**/*.ts'],
},
{
rules: {},
rules: {
'@stylistic/brace-style': ['error', '1tbs', { allowSingleLine: true }],
'@stylistic/operator-linebreak': ['error', 'after'],
},
},
])
1 change: 1 addition & 0 deletions src/inputs.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import * as core from '@actions/core'
// eslint-disable-next-line import/no-named-as-default
import parseInputs from '@wow-actions/parse-inputs'

export function getInputs() {
Expand Down
2 changes: 1 addition & 1 deletion src/windup.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import * as core from '@actions/core'
import { Result } from 'semantic-release'
import { type Result } from 'semantic-release'

export async function windup(result: Result) {
if (!result) {
Expand Down

0 comments on commit 6e97bab

Please sign in to comment.