@shibanet0/datamitsu-config 0.0.1-alpha-13 → 0.0.1-alpha-14
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/.oxlintrc.json +30 -0
- package/datamitsu.js +1 -1
- package/package.json +2 -1
package/.oxlintrc.json
ADDED
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "./oxlint_configuration_schema.json",
|
|
3
|
+
"categories": {
|
|
4
|
+
"correctness": "error",
|
|
5
|
+
"pedantic": "error",
|
|
6
|
+
"perf": "error",
|
|
7
|
+
"style": "warn",
|
|
8
|
+
"suspicious": "error"
|
|
9
|
+
},
|
|
10
|
+
"rules": {
|
|
11
|
+
"array-type": "off",
|
|
12
|
+
"arrow-body-style": "off",
|
|
13
|
+
"capitalized-comments": "off",
|
|
14
|
+
"func-style": "off",
|
|
15
|
+
"id-length": "off",
|
|
16
|
+
"max-lines": "off",
|
|
17
|
+
"max-lines-per-function": "off",
|
|
18
|
+
"no-inline-comments": "off",
|
|
19
|
+
"no-magic-numbers": "off",
|
|
20
|
+
"no-ternary": "off",
|
|
21
|
+
"no-warning-comments": "off",
|
|
22
|
+
"prefer-template": "off",
|
|
23
|
+
"sort-imports": "off",
|
|
24
|
+
"triple-slash-reference": "off",
|
|
25
|
+
"unicorn/filename-case": "off",
|
|
26
|
+
"unicorn/no-array-sort": "off",
|
|
27
|
+
"unicorn/no-null": "off",
|
|
28
|
+
"unicorn/require-module-specifiers": "off"
|
|
29
|
+
}
|
|
30
|
+
}
|
package/datamitsu.js
CHANGED
|
@@ -1958,7 +1958,7 @@ var mapOfApps = {
|
|
|
1958
1958
|
|
|
1959
1959
|
// package.json
|
|
1960
1960
|
var name = "@shibanet0/datamitsu-config";
|
|
1961
|
-
var version = "0.0.1-alpha-
|
|
1961
|
+
var version = "0.0.1-alpha-14";
|
|
1962
1962
|
var dependencies = {
|
|
1963
1963
|
"@antebudimir/eslint-plugin-vanilla-extract": "1.16.0",
|
|
1964
1964
|
"@commitlint/cli": "20.2.0",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@shibanet0/datamitsu-config",
|
|
3
|
-
"version": "0.0.1-alpha-
|
|
3
|
+
"version": "0.0.1-alpha-14",
|
|
4
4
|
"description": "",
|
|
5
5
|
"keywords": [],
|
|
6
6
|
"license": "MIT",
|
|
@@ -55,6 +55,7 @@
|
|
|
55
55
|
"tsx": "bin/tsx.mjs"
|
|
56
56
|
},
|
|
57
57
|
"files": [
|
|
58
|
+
".oxlintrc.json",
|
|
58
59
|
"datamitsu.js",
|
|
59
60
|
"tsconfig/**",
|
|
60
61
|
"dist/**",
|