eslint-config-tamia 9.1.2 → 9.1.3

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/eslint.config.mjs CHANGED
@@ -1,3 +1,3 @@
1
- import react from './react.mjs';
1
+ import tamia from './index.mjs';
2
2
 
3
- export default [...react];
3
+ export default [...tamia];
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "eslint-config-tamia",
3
3
  "description": "Tâmia ESLint config",
4
- "version": "9.1.2",
4
+ "version": "9.1.3",
5
5
  "type": "module",
6
6
  "main": "index.mjs",
7
7
  "exports": {
@@ -42,6 +42,7 @@
42
42
  "homepage": "https://github.com/tamiadev/eslint-config-tamia",
43
43
  "devDependencies": {
44
44
  "@types/eslint__js": "^8.42.3",
45
+ "@types/react": "^18.3.3",
45
46
  "eslint": "^9.7.0",
46
47
  "react": "^18.3.1",
47
48
  "vitest": "^2.0.4"
@@ -5,7 +5,7 @@ import js from '@eslint/js';
5
5
  export default [
6
6
  js.configs.recommended,
7
7
  {
8
- files: ['**/*.{js,mjs,cjs,jsx,astro}'],
8
+ files: ['**/*.{js,mjs,cjs,jsx,ts,tsx,astro}'],
9
9
  languageOptions: {
10
10
  globals: {
11
11
  ...globals.es2024,
@@ -33,7 +33,7 @@ export default [
33
33
  },
34
34
  {
35
35
  selector: 'property',
36
- format: null,
36
+ format: undefined,
37
37
  },
38
38
  {
39
39
  selector: 'typeLike',