@devapoo-dev/eslint-config 1.1.16 → 1.1.18

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.
Files changed (3) hide show
  1. package/README.md +1 -1
  2. package/index.mjs +1 -9
  3. package/package.json +8 -3
package/README.md CHANGED
@@ -1 +1 @@
1
- @devapoo-dev/eslint-config
1
+ @devapoo-dev/eslint-config
package/index.mjs CHANGED
@@ -1,8 +1,8 @@
1
1
  import antfu from '@antfu/eslint-config';
2
2
  import checkFile from 'eslint-plugin-check-file';
3
3
  import prettier from 'eslint-plugin-prettier/recommended';
4
- import tailwindcss from 'eslint-plugin-tailwindcss';
5
4
  import reactRefresh from 'eslint-plugin-react-refresh';
5
+ import tailwindcss from 'eslint-plugin-tailwindcss';
6
6
 
7
7
  /** @doc Glob Tester: https://globster.xyz/ */
8
8
  export const JS_GLOB = '**/*.{,m,c}js{,x}';
@@ -96,14 +96,6 @@ export function createConfig(options, ...userConfigs) {
96
96
  newlinesInside: 0,
97
97
  },
98
98
  ],
99
- 'perfectionist/sort-exports': [
100
- 'error',
101
- {
102
- type: 'alphabetical',
103
- order: 'asc',
104
- ignoreCase: true,
105
- },
106
- ],
107
99
  'perfectionist/sort-interfaces': [
108
100
  'error',
109
101
  {
package/package.json CHANGED
@@ -1,13 +1,15 @@
1
1
  {
2
2
  "name": "@devapoo-dev/eslint-config",
3
- "version": "1.1.16",
4
3
  "type": "module",
4
+ "version": "1.1.18",
5
5
  "main": "index.mjs",
6
6
  "types": "index.d.ts",
7
+ "peerDependencies": {
8
+ "eslint": "^9.39.4"
9
+ },
7
10
  "dependencies": {
8
11
  "@antfu/eslint-config": "^8.2.0",
9
12
  "@eslint-react/eslint-plugin": "^4.2.3",
10
- "eslint": "9",
11
13
  "eslint-config-prettier": "^10.1.8",
12
14
  "eslint-plugin-check-file": "^3.3.1",
13
15
  "eslint-plugin-jsx-a11y": "^6.10.2",
@@ -17,7 +19,10 @@
17
19
  "tailwindcss": "^4.2.2"
18
20
  },
19
21
  "devDependencies": {
20
- "@devapoo-dev/tsconfig": "0.0.11"
22
+ "eslint": "^9",
23
+ "typescript": "^5",
24
+ "@devapoo-dev/prettier-config": "0.0.10",
25
+ "@devapoo-dev/tsconfig": "0.0.13"
21
26
  },
22
27
  "scripts": {
23
28
  "lint": "eslint .",