@10stars/config 15.0.8 → 15.0.10
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 +13 -1
- package/oxlint.config.common.json +45 -0
- package/package.json +2 -1
package/.oxfmtrc.json
CHANGED
|
@@ -4,5 +4,17 @@
|
|
|
4
4
|
"indentWidth": 2,
|
|
5
5
|
"semi": false,
|
|
6
6
|
"useTabs": false,
|
|
7
|
-
"bracketSpacing": true
|
|
7
|
+
"bracketSpacing": true,
|
|
8
|
+
"experimentalSortImports": {
|
|
9
|
+
"groups": [
|
|
10
|
+
"builtin",
|
|
11
|
+
"external",
|
|
12
|
+
"internal",
|
|
13
|
+
["parent", "sibling", "index"],
|
|
14
|
+
"side-effect"
|
|
15
|
+
],
|
|
16
|
+
"newlinesBetween": true,
|
|
17
|
+
"order": "asc",
|
|
18
|
+
"ignoreCase": true
|
|
19
|
+
}
|
|
8
20
|
}
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
{
|
|
2
|
+
"plugins": ["typescript", "import"],
|
|
3
|
+
"rules": {
|
|
4
|
+
"import/export": "off",
|
|
5
|
+
"import/namespace": "off",
|
|
6
|
+
"import/no-named-as-default": "off",
|
|
7
|
+
"import/no-unresolved": "off",
|
|
8
|
+
"no-case-declarations": "off",
|
|
9
|
+
"no-console": "off",
|
|
10
|
+
"no-magic-numbers": "off",
|
|
11
|
+
"no-unused-vars": "off",
|
|
12
|
+
"no-useless-constructor": "off",
|
|
13
|
+
"sort-imports": "off",
|
|
14
|
+
"typescript/await-thenable": "off",
|
|
15
|
+
"typescript/ban-ts-comment": "off",
|
|
16
|
+
"typescript/ban-types": "off",
|
|
17
|
+
"typescript/consistent-indexed-object-style": "off",
|
|
18
|
+
"typescript/no-confusing-void-expression": "off",
|
|
19
|
+
"typescript/no-dynamic-delete": "off",
|
|
20
|
+
"typescript/no-empty-function": "off",
|
|
21
|
+
"typescript/no-empty-interface": "off",
|
|
22
|
+
"typescript/no-empty-object-type": "off",
|
|
23
|
+
"typescript/no-explicit-any": "off",
|
|
24
|
+
"typescript/no-invalid-void-type": "off",
|
|
25
|
+
"typescript/no-magic-numbers": "off",
|
|
26
|
+
"typescript/no-non-null-assertion": "off",
|
|
27
|
+
"typescript/no-throw-literal": "off",
|
|
28
|
+
"typescript/no-unnecessary-condition": "off",
|
|
29
|
+
"typescript/no-unnecessary-type-constraint": "off",
|
|
30
|
+
"typescript/no-unnecessary-type-parameters": "off",
|
|
31
|
+
"typescript/no-unsafe-argument": "off",
|
|
32
|
+
"typescript/no-unsafe-assignment": "off",
|
|
33
|
+
"typescript/no-unsafe-call": "off",
|
|
34
|
+
"typescript/no-unsafe-declaration-merging": "off",
|
|
35
|
+
"typescript/no-unsafe-enum-comparison": "off",
|
|
36
|
+
"typescript/no-unsafe-member-access": "off",
|
|
37
|
+
"typescript/no-unsafe-return": "off",
|
|
38
|
+
"typescript/no-unused-vars": "off",
|
|
39
|
+
"typescript/no-useless-constructor": "off",
|
|
40
|
+
"typescript/only-throw-error": "off",
|
|
41
|
+
"typescript/prefer-nullish-coalescing": "off",
|
|
42
|
+
"typescript/unbound-method": "off",
|
|
43
|
+
"typescript/use-unknown-in-catch-callback-variable": "off"
|
|
44
|
+
}
|
|
45
|
+
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@10stars/config",
|
|
3
|
-
"version": "15.0.
|
|
3
|
+
"version": "15.0.10",
|
|
4
4
|
"private": false,
|
|
5
5
|
"bin": {
|
|
6
6
|
"config": "./src/index.ts"
|
|
@@ -8,6 +8,7 @@
|
|
|
8
8
|
"files": [
|
|
9
9
|
".oxfmtrc.json",
|
|
10
10
|
"oxlint.config.browser.json",
|
|
11
|
+
"oxlint.config.common.json",
|
|
11
12
|
"oxlint.config.node.json",
|
|
12
13
|
"src",
|
|
13
14
|
"tsconfig.base.json"
|