@dethdkn/ox-config 1.0.11 → 1.0.12
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
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dethdkn/ox-config",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.12",
|
|
4
4
|
"description": "⚓ My Opinionated OX Config",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"oxfmt",
|
|
@@ -36,11 +36,12 @@
|
|
|
36
36
|
"fmt:fix": "oxfmt",
|
|
37
37
|
"lint": "oxlint --type-aware",
|
|
38
38
|
"lint:fix": "oxlint --type-aware --fix",
|
|
39
|
-
"
|
|
39
|
+
"prerelease": "bun run fmt && bun run lint",
|
|
40
|
+
"release": "bun run prerelease && bumpp && sudo npm publish"
|
|
40
41
|
},
|
|
41
42
|
"dependencies": {
|
|
42
|
-
"oxfmt": "^0.
|
|
43
|
-
"oxlint": "^1.
|
|
43
|
+
"oxfmt": "^0.33.0",
|
|
44
|
+
"oxlint": "^1.48.0",
|
|
44
45
|
"oxlint-tsgolint": "^0.13.0"
|
|
45
46
|
},
|
|
46
47
|
"devDependencies": {
|
|
@@ -16,6 +16,7 @@
|
|
|
16
16
|
"typescript/prefer-literal-enum-member": ["error"],
|
|
17
17
|
"typescript/promise-function-async": ["off"],
|
|
18
18
|
"typescript/use-unknown-in-catch-callback-variable": ["error"],
|
|
19
|
-
"typescript/no-invalid-void-type": ["error"]
|
|
19
|
+
"typescript/no-invalid-void-type": ["error"],
|
|
20
|
+
"typescript/no-use-before-define": ["off"]
|
|
20
21
|
}
|
|
21
22
|
}
|
|
@@ -13,6 +13,8 @@
|
|
|
13
13
|
"typescript/prefer-function-type": ["error"],
|
|
14
14
|
"typescript/prefer-reduce-type-parameter": ["error"],
|
|
15
15
|
"typescript/prefer-return-this-type": ["error"],
|
|
16
|
-
"typescript/class-literal-property-style": ["error"]
|
|
16
|
+
"typescript/class-literal-property-style": ["error"],
|
|
17
|
+
"typescript/unified-signatures": ["error"],
|
|
18
|
+
"typescript/parameter-properties": ["error"]
|
|
17
19
|
}
|
|
18
20
|
}
|
|
@@ -8,6 +8,8 @@
|
|
|
8
8
|
"eslint/no-unneeded-ternary": ["error"],
|
|
9
9
|
"eslint/no-useless-concat": ["error"],
|
|
10
10
|
"eslint/no-useless-constructor": ["error"],
|
|
11
|
-
"eslint/preserve-caught-error": ["error"]
|
|
11
|
+
"eslint/preserve-caught-error": ["error"],
|
|
12
|
+
"eslint/no-shadow": ["error"],
|
|
13
|
+
"eslint/no-unmodified-loop-condition": ["error"]
|
|
12
14
|
}
|
|
13
15
|
}
|