@dethdkn/ox-config 1.0.12 → 1.0.13

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/.oxfmtrc.json CHANGED
@@ -5,7 +5,17 @@
5
5
  "bracketSpacing": true,
6
6
  "embeddedLanguageFormatting": "auto",
7
7
  "endOfLine": "lf",
8
- "experimentalSortImports": {
8
+ "htmlWhitespaceSensitivity": "css",
9
+ "insertFinalNewline": true,
10
+ "jsxSingleQuote": false,
11
+ "objectWrap": "preserve",
12
+ "printWidth": 100,
13
+ "proseWrap": "preserve",
14
+ "quoteProps": "as-needed",
15
+ "semi": false,
16
+ "singleAttributePerLine": false,
17
+ "singleQuote": true,
18
+ "sortImports": {
9
19
  "order": "asc",
10
20
  "ignoreCase": true,
11
21
  "newlinesBetween": true,
@@ -19,24 +29,14 @@
19
29
  ],
20
30
  "sortSideEffects": true
21
31
  },
22
- "experimentalSortPackageJson": true,
23
- "experimentalTailwindcss": {
32
+ "sortPackageJson": true,
33
+ "sortTailwindcss": {
24
34
  "attributes": ["class", "className"],
25
35
  "functions": [],
26
36
  "preserveDuplicates": false,
27
37
  "preserveWhitespace": false,
28
38
  "stylesheet": "./app/assets/main.css"
29
39
  },
30
- "htmlWhitespaceSensitivity": "css",
31
- "insertFinalNewline": true,
32
- "jsxSingleQuote": false,
33
- "objectWrap": "preserve",
34
- "printWidth": 100,
35
- "proseWrap": "preserve",
36
- "quoteProps": "as-needed",
37
- "semi": false,
38
- "singleAttributePerLine": false,
39
- "singleQuote": true,
40
40
  "tabWidth": 2,
41
41
  "trailingComma": "all",
42
42
  "useTabs": false,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dethdkn/ox-config",
3
- "version": "1.0.12",
3
+ "version": "1.0.13",
4
4
  "description": "⚓ My Opinionated OX Config",
5
5
  "keywords": [
6
6
  "oxfmt",
@@ -40,14 +40,14 @@
40
40
  "release": "bun run prerelease && bumpp && sudo npm publish"
41
41
  },
42
42
  "dependencies": {
43
- "oxfmt": "^0.33.0",
44
- "oxlint": "^1.48.0",
45
- "oxlint-tsgolint": "^0.13.0"
43
+ "oxfmt": "^0.36.0",
44
+ "oxlint": "^1.51.0",
45
+ "oxlint-tsgolint": "^0.16.0"
46
46
  },
47
47
  "devDependencies": {
48
48
  "bumpp": "^10.4.1",
49
49
  "typescript": "^5.9.3",
50
- "vue": "^3.5.28"
50
+ "vue": "^3.5.29"
51
51
  },
52
- "packageManager": "bun@1.3.7"
52
+ "packageManager": "bun@1.3.10"
53
53
  }
@@ -1,6 +1,18 @@
1
1
  {
2
2
  "rules": {
3
3
  "typescript/prefer-optional-chain": ["error"],
4
- "typescript/no-unnecessary-condition": ["error"]
4
+ "typescript/no-unnecessary-condition": ["error"],
5
+ "typescript/dot-notation": ["error"],
6
+ "typescript/no-useless-default-assignment": ["error"],
7
+ "typescript/no-unnecessary-type-parameters": ["error"],
8
+ "typescript/consistent-return": ["error"],
9
+ "typescript/prefer-string-starts-ends-with": ["error"],
10
+ "typescript/prefer-regexp-exec": ["error"],
11
+ "typescript/prefer-readonly": ["error"],
12
+ "typescript/no-unnecessary-qualifier": ["error"],
13
+ "typescript/prefer-find": ["error"],
14
+ "typescript/prefer-readonly-parameter-types": ["off"],
15
+ "typescript/strict-void-return": ["error"],
16
+ "typescript/consistent-type-exports": ["error"]
5
17
  }
6
18
  }
@@ -1,6 +1,7 @@
1
1
  {
2
2
  "rules": {
3
3
  "node/no-new-require": ["error"],
4
- "node/no-process-env": ["error"]
4
+ "node/no-process-env": ["error"],
5
+ "node/no-path-concat": ["error"]
5
6
  }
6
7
  }
@@ -11,6 +11,8 @@
11
11
  "unicorn/no-useless-error-capture-stack-trace": ["error"],
12
12
  "unicorn/prefer-modern-math-apis": ["error"],
13
13
  "unicorn/prefer-node-protocol": ["off"],
14
- "unicorn/prefer-number-properties": ["error"]
14
+ "unicorn/prefer-number-properties": ["error"],
15
+ "unicorn/prefer-module": ["error"],
16
+ "unicorn/prefer-ternary": ["error"]
15
17
  }
16
18
  }
@@ -10,6 +10,8 @@
10
10
  "vitest/prefer-called-once": ["off"],
11
11
  "vitest/prefer-describe-function-title": ["error"],
12
12
  "vitest/no-unneeded-async-expect-function": ["error"],
13
- "vitest/prefer-expect-type-of": ["error"]
13
+ "vitest/prefer-expect-type-of": ["error"],
14
+ "vitest/no-importing-vitest-globals": ["off"],
15
+ "vitest/prefer-import-in-mock": ["error"]
14
16
  }
15
17
  }