Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
37 changes: 0 additions & 37 deletions __tests__/index.test.ts

This file was deleted.

1 change: 1 addition & 0 deletions __tests__/stubs/env.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ const empty: EnvMetadata = {
actionFile: '',
actionPath: '',
artifacts: [],
caches: {},
dotenvFile: '',
entrypoint: '',
env: {},
Expand Down
16 changes: 1 addition & 15 deletions eslint.config.mjs
Original file line number Diff line number Diff line change
@@ -1,9 +1,7 @@
import { fixupPluginRules } from '@eslint/compat'
import { FlatCompat } from '@eslint/eslintrc'
import js from '@eslint/js'
import typescriptEslint from '@typescript-eslint/eslint-plugin'
import tsParser from '@typescript-eslint/parser'
import _import from 'eslint-plugin-import'
import prettier from 'eslint-plugin-prettier'
import globals from 'globals'
import path from 'node:path'
Expand Down Expand Up @@ -37,12 +35,10 @@ export default [
...compat.extends(
'eslint:recommended',
'plugin:@typescript-eslint/eslint-recommended',
'plugin:@typescript-eslint/recommended',
'plugin:prettier/recommended'
'plugin:@typescript-eslint/recommended'
),
{
plugins: {
import: fixupPluginRules(_import),
prettier,
'@typescript-eslint': typescriptEslint
},
Expand All @@ -63,22 +59,12 @@ export default [
}
},

settings: {
'import/resolver': {
typescript: {
alwaysTryTypes: true,
project: 'tsconfig.eslint.json'
}
}
},

rules: {
'@typescript-eslint/no-explicit-any': 'off',
camelcase: 'off',
'eslint-comments/no-use': 'off',
'eslint-comments/no-unused-disable': 'off',
'i18n-text/no-en': 'off',
'import/no-namespace': 'off',
'no-console': 'off',
'no-shadow': 'off',
'no-unused-vars': 'off',
Expand Down
3 changes: 2 additions & 1 deletion jest.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@ const config: JestConfigWithTsJest = {
'node_modules',
'src/types/quibble.d.ts',
'src/commands/run.ts',
'src/stubs/artifact/artifact.ts'
'src/stubs/artifact/artifact.ts',
'src/index.ts'
],
coverageReporters: ['json-summary', 'lcov', 'text'],
coverageThreshold: {
Expand Down
Loading
Loading