@alexlit/config-eslint 134.0.0 → 134.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@alexlit/config-eslint",
3
- "version": "134.0.0",
3
+ "version": "134.0.1",
4
4
  "private": false,
5
5
  "description": "Sharable ESLint configuration",
6
6
  "keywords": [
@@ -1,12 +1,12 @@
1
1
  import { defineConfig } from 'eslint/config';
2
2
 
3
- // import tailwind from 'eslint-plugin-tailwindcss';
3
+ // import plugin from 'eslint-plugin-tailwindcss';
4
4
  import { FILES } from '../presets/base.js';
5
5
 
6
6
  /** @see [eslint-plugin-tailwindcss](https://github.com/francoismassart/eslint-plugin-tailwindcss) */
7
7
  export const tailwindcss = defineConfig([
8
8
  // TODO: включить после обновления плагина
9
- // ...tailwind.configs['flat/recommended'],
9
+ // ...plugin.configs['flat/recommended'],
10
10
  {
11
11
  files: FILES,
12
12
  rules: {
@@ -1,7 +1,7 @@
1
- import plugin from '@tanstack/eslint-plugin-query';
1
+ // import plugin from '@tanstack/eslint-plugin-query';
2
2
  import { defineConfig } from 'eslint/config';
3
3
 
4
4
  /** @see [@tanstack/query](https://tanstack.com/query/latest/docs/eslint/eslint-plugin-query) */
5
5
  export const tanstackQuery = defineConfig([
6
- ...plugin.configs['flat/recommended'],
6
+ // ...plugin.configs['flat/recommended'], // TODO: ждет обновления плагина
7
7
  ]);