diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e20202c..faea7e2 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -29,18 +29,13 @@ jobs: uses: kurocado-studio/styleguide/.github/workflows/workflow.lint.yml@main secrets: inherit - test: - needs: lint - uses: kurocado-studio/styleguide/.github/workflows/workflow.test.yml@main - secrets: inherit - document: - needs: test + needs: lint uses: kurocado-studio/styleguide/.github/workflows/workflow.document.yml@main secrets: inherit release: - needs: test + needs: lint uses: kurocado-studio/styleguide/.github/workflows/workflow.release.yml@main secrets: inherit with: diff --git a/src/eslint/constants.js b/src/eslint/constants.js index 5bde610..866d11b 100644 --- a/src/eslint/constants.js +++ b/src/eslint/constants.js @@ -16,6 +16,7 @@ import unicornRecommended from 'eslint-plugin-unicorn'; import vitestRecommended from 'eslint-plugin-vitest'; import { base } from './rules/base/index.js'; +import { typescriptEslintConfig } from './rules/typescript/index.js'; const SPEC_PREFIX = 'spec'; const TEST_PREFIX = 'test'; @@ -82,6 +83,7 @@ export const typescriptLanguageRootConfig = { ...base.rules, ...eslintPluginImport.configs.recommended.rules, ...eslintPluginImport.configs.typescript.rules, + ...typescriptEslintConfig.rules, }, settings: { 'import/resolver': { node: {} },