Skip to content
This repository has been archived by the owner on Nov 4, 2024. It is now read-only.

Commit

Permalink
chore: cleanup types
Browse files Browse the repository at this point in the history
  • Loading branch information
DavidRouyer committed Oct 3, 2024
1 parent a1be484 commit 40f6f12
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion apps/web/eslint.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import baseConfig from '@kyaku/eslint-config/base';
import reactConfig from '@kyaku/eslint-config/react';
import tailwindConfig from '@kyaku/eslint-config/tailwind';

/** @type {import('@typescript-eslint/utils').TSESLint.FlatConfig.ConfigArray} */
/** @type {import('typescript-eslint').Config} */
export default [
{
ignores: [
Expand Down
2 changes: 1 addition & 1 deletion packages/auth/eslint.config.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import baseConfig from '@kyaku/eslint-config/base';

/** @type {import('@typescript-eslint/utils').TSESLint.FlatConfig.ConfigArray} */
/** @type {import('typescript-eslint').Config} */
export default [...baseConfig];
2 changes: 1 addition & 1 deletion packages/database/eslint.config.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import baseConfig from '@kyaku/eslint-config/base';

/** @type {import('@typescript-eslint/utils').TSESLint.FlatConfig.ConfigArray} */
/** @type {import('typescript-eslint').Config} */
export default [...baseConfig];
2 changes: 1 addition & 1 deletion packages/kyaku/eslint.config.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import baseConfig from '@kyaku/eslint-config/base';

/** @type {import('@typescript-eslint/utils').TSESLint.FlatConfig.ConfigArray} */
/** @type {import('typescript-eslint').Config} */
export default [...baseConfig];
2 changes: 1 addition & 1 deletion packages/ui/eslint.config.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import baseConfig from '@kyaku/eslint-config/base';

/** @type {import('@typescript-eslint/utils').TSESLint.FlatConfig.ConfigArray} */
/** @type {import('typescript-eslint').Config} */
export default [...baseConfig];
2 changes: 1 addition & 1 deletion packages/workshop/eslint.config.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import baseConfig from '@kyaku/eslint-config/base';
import storybook from 'eslint-plugin-storybook'

/** @type {import('@typescript-eslint/utils').TSESLint.FlatConfig.ConfigArray} */
/** @type {import('typescript-eslint').Config} */
export default [
...baseConfig, {
ignores: ['.storybook/**/*'],
Expand Down
2 changes: 1 addition & 1 deletion tooling/eslint/react.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import reactPlugin from 'eslint-plugin-react';
import hooksPlugin from 'eslint-plugin-react-hooks';

/** @type {import('eslint').Linter.FlatConfig[]} */
/** @type {import('eslint').Linter.Config[]} */
export default [
{
files: ['**/*.ts', '**/*.tsx'],
Expand Down
2 changes: 1 addition & 1 deletion tooling/eslint/tailwind.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import eslintPluginTailwindCSS from 'eslint-plugin-tailwindcss';

/** @type {import('eslint').Linter.FlatConfig[]} */
/** @type {import('eslint').Linter.Config[]} */
export default [...eslintPluginTailwindCSS.configs['flat/recommended']];
2 changes: 1 addition & 1 deletion tooling/tailwind/eslint.config.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import baseConfig from '@kyaku/eslint-config/base';

/** @type {import('@typescript-eslint/utils').TSESLint.FlatConfig.ConfigArray} */
/** @type {import('typescript-eslint').Config} */
export default [...baseConfig];

0 comments on commit 40f6f12

Please sign in to comment.