shinkansen-transmission 2.5.48 → 2.5.49
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/babel.config.cjs +4 -0
- package/package.json +2 -1
- package/eslint.config.txt +0 -112
package/babel.config.cjs
CHANGED
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "shinkansen-transmission",
|
3
|
-
"version": "2.5.
|
3
|
+
"version": "2.5.49",
|
4
4
|
"description": "Shinkansen Transmission",
|
5
5
|
"keywords": [
|
6
6
|
"Shinkansen",
|
@@ -49,6 +49,7 @@
|
|
49
49
|
"@types/chai": "^5.2.2",
|
50
50
|
"@types/debug": "^4.1.12",
|
51
51
|
"@types/mocha": "^10.0.10",
|
52
|
+
"@types/node": "^24.0.10",
|
52
53
|
"c8": "^10.1.3",
|
53
54
|
"chai": "^5.2.0",
|
54
55
|
"core-js": "^3.43.0",
|
package/eslint.config.txt
DELETED
@@ -1,112 +0,0 @@
|
|
1
|
-
import globals from 'globals'
|
2
|
-
import jsdoc from 'eslint-plugin-jsdoc'
|
3
|
-
import merge from '@sequencemedia/eslint-merge'
|
4
|
-
import standard from '@sequencemedia/eslint-config-standard/configs/recommended/merge'
|
5
|
-
import typescript from '@sequencemedia/eslint-config-typescript/configs/recommended/merge'
|
6
|
-
|
7
|
-
export default [
|
8
|
-
{
|
9
|
-
ignores: [
|
10
|
-
'coverage'
|
11
|
-
]
|
12
|
-
},
|
13
|
-
merge(
|
14
|
-
jsdoc.configs['flat/recommended'],
|
15
|
-
{
|
16
|
-
languageOptions: {
|
17
|
-
globals: {
|
18
|
-
TransmissionTypes: 'readonly',
|
19
|
-
PropertyKey: 'readonly'
|
20
|
-
}
|
21
|
-
},
|
22
|
-
rules: {
|
23
|
-
'jsdoc/require-param-description': 'off',
|
24
|
-
'jsdoc/require-returns-description': 'off',
|
25
|
-
'jsdoc/check-tag-names': ['error', { definedTags: ['link'] }],
|
26
|
-
'jsdoc/tag-lines': [
|
27
|
-
'error',
|
28
|
-
'never',
|
29
|
-
{
|
30
|
-
tags: {
|
31
|
-
description: {
|
32
|
-
lines: 'always'
|
33
|
-
},
|
34
|
-
link: {
|
35
|
-
lines: 'always'
|
36
|
-
}
|
37
|
-
},
|
38
|
-
applyToEndTag: false,
|
39
|
-
startLines: 1
|
40
|
-
}
|
41
|
-
],
|
42
|
-
'jsdoc/lines-before-block': ['error', { lines: 1 }]
|
43
|
-
}
|
44
|
-
}
|
45
|
-
),
|
46
|
-
/**
|
47
|
-
* Standard config
|
48
|
-
*/
|
49
|
-
standard({
|
50
|
-
files: [
|
51
|
-
'**/*.{mjs,cjs,mts,cts}'
|
52
|
-
],
|
53
|
-
languageOptions: {
|
54
|
-
globals: {
|
55
|
-
...globals.node
|
56
|
-
}
|
57
|
-
},
|
58
|
-
rules: {
|
59
|
-
'@stylistic/object-curly-newline': [
|
60
|
-
'error',
|
61
|
-
{
|
62
|
-
ImportDeclaration: 'always',
|
63
|
-
ExportDeclaration: {
|
64
|
-
multiline: true,
|
65
|
-
minProperties: 2
|
66
|
-
}
|
67
|
-
}
|
68
|
-
]
|
69
|
-
}
|
70
|
-
}),
|
71
|
-
standard({
|
72
|
-
files: [
|
73
|
-
'test/**/*.{mjs,cjs,mts,cts}'
|
74
|
-
],
|
75
|
-
languageOptions: {
|
76
|
-
globals: {
|
77
|
-
...globals.mocha
|
78
|
-
}
|
79
|
-
}
|
80
|
-
}),
|
81
|
-
|
82
|
-
/**
|
83
|
-
* TypeScript config
|
84
|
-
*/
|
85
|
-
typescript({
|
86
|
-
files: [
|
87
|
-
'**/*.{mts,cts}'
|
88
|
-
],
|
89
|
-
languageOptions: {
|
90
|
-
globals: {
|
91
|
-
...globals.node,
|
92
|
-
TransmissionTypes: 'readonly'
|
93
|
-
}
|
94
|
-
},
|
95
|
-
rules: {
|
96
|
-
'@typescript-eslint/max-params': [
|
97
|
-
'error',
|
98
|
-
{
|
99
|
-
max: 5
|
100
|
-
}
|
101
|
-
]
|
102
|
-
}
|
103
|
-
}),
|
104
|
-
{
|
105
|
-
files: [
|
106
|
-
'src/**/*.d.{mts,cts}'
|
107
|
-
],
|
108
|
-
rules: {
|
109
|
-
'no-redeclare': 'off'
|
110
|
-
}
|
111
|
-
}
|
112
|
-
]
|