@tamagui/config 1.121.6 → 1.121.7

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 (2) hide show
  1. package/biome.json +83 -0
  2. package/package.json +12 -12
package/biome.json ADDED
@@ -0,0 +1,83 @@
1
+ {
2
+ "$schema": "https://biomejs.dev/schemas/1.9.1/schema.json",
3
+ "organizeImports": {
4
+ "enabled": false
5
+ },
6
+ "linter": {
7
+ "enabled": true,
8
+ "ignore": ["**/*/generated-new.ts", "**/*/generated-v2.ts", ".tamagui"],
9
+ "rules": {
10
+ "correctness": {
11
+ "useExhaustiveDependencies": "off",
12
+ "noInnerDeclarations": "off",
13
+ "noUnnecessaryContinue": "off",
14
+ "noConstructorReturn": "off"
15
+ },
16
+ "suspicious": {
17
+ "noImplicitAnyLet": "off",
18
+ "noConfusingVoidType": "off",
19
+ "noEmptyInterface": "off",
20
+ "noExplicitAny": "off",
21
+ "noArrayIndexKey": "off",
22
+ "noDoubleEquals": "off",
23
+ "noConsoleLog": "error",
24
+ "noAssignInExpressions": "off",
25
+ "noRedeclare": "off"
26
+ },
27
+ "style": {
28
+ "noParameterAssign": "off",
29
+ "noNonNullAssertion": "off",
30
+ "noArguments": "off",
31
+ "noUnusedTemplateLiteral": "off",
32
+ "useDefaultParameterLast": "off",
33
+ "useConst": "off",
34
+ "useEnumInitializers": "off",
35
+ "useTemplate": "off",
36
+ "useSelfClosingElements": "off",
37
+ "useImportType": "error",
38
+ "noUselessElse": "off"
39
+ },
40
+ "security": {
41
+ "noDangerouslySetInnerHtml": "off",
42
+ "noDangerouslySetInnerHtmlWithChildren": "off"
43
+ },
44
+ "performance": {
45
+ "noDelete": "off",
46
+ "noAccumulatingSpread": "off"
47
+ },
48
+ "complexity": {
49
+ "noForEach": "off",
50
+ "noUselessTernary": "off",
51
+ "noBannedTypes": "off",
52
+ "noUselessFragments": "off",
53
+ "useLiteralKeys": "off",
54
+ "useSimplifiedLogicExpression": "off",
55
+ "useOptionalChain": "off"
56
+ },
57
+ "a11y": {
58
+ "noSvgWithoutTitle": "off",
59
+ "useMediaCaption": "off",
60
+ "noHeaderScope": "off",
61
+ "useAltText": "off",
62
+ "useButtonType": "off"
63
+ }
64
+ }
65
+ },
66
+ "formatter": {
67
+ "enabled": true,
68
+ "formatWithErrors": false,
69
+ "indentStyle": "space",
70
+ "indentWidth": 2,
71
+ "lineWidth": 90,
72
+ "lineEnding": "lf",
73
+ "ignore": ["**/*/generated-new.ts", "**/*/generated-v2.ts", ".tamagui"]
74
+ },
75
+ "javascript": {
76
+ "formatter": {
77
+ "trailingCommas": "es5",
78
+ "jsxQuoteStyle": "double",
79
+ "semicolons": "asNeeded",
80
+ "quoteStyle": "single"
81
+ }
82
+ }
83
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tamagui/config",
3
- "version": "1.121.6",
3
+ "version": "1.121.7",
4
4
  "types": "./types/index.d.ts",
5
5
  "main": "dist/cjs",
6
6
  "module": "dist/esm",
@@ -72,19 +72,19 @@
72
72
  }
73
73
  },
74
74
  "dependencies": {
75
- "@tamagui/animations-css": "1.121.6",
76
- "@tamagui/animations-moti": "1.121.6",
77
- "@tamagui/animations-react-native": "1.121.6",
78
- "@tamagui/colors": "1.121.6",
79
- "@tamagui/font-inter": "1.121.6",
80
- "@tamagui/font-silkscreen": "1.121.6",
81
- "@tamagui/react-native-media-driver": "1.121.6",
82
- "@tamagui/shorthands": "1.121.6",
83
- "@tamagui/themes": "1.121.6",
84
- "@tamagui/web": "1.121.6"
75
+ "@tamagui/animations-css": "1.121.7",
76
+ "@tamagui/animations-moti": "1.121.7",
77
+ "@tamagui/animations-react-native": "1.121.7",
78
+ "@tamagui/colors": "1.121.7",
79
+ "@tamagui/font-inter": "1.121.7",
80
+ "@tamagui/font-silkscreen": "1.121.7",
81
+ "@tamagui/react-native-media-driver": "1.121.7",
82
+ "@tamagui/shorthands": "1.121.7",
83
+ "@tamagui/themes": "1.121.7",
84
+ "@tamagui/web": "1.121.7"
85
85
  },
86
86
  "devDependencies": {
87
- "@tamagui/build": "1.121.6"
87
+ "@tamagui/build": "1.121.7"
88
88
  },
89
89
  "publishConfig": {
90
90
  "access": "public"