Skip to content

Commit c72d5c7

Browse files
committed
Update Deps
List Patches switch to pnpm
1 parent 12fc9a5 commit c72d5c7

File tree

12 files changed

+5672
-8688
lines changed

12 files changed

+5672
-8688
lines changed

.github/workflows/eslint.yml

Lines changed: 0 additions & 38 deletions
This file was deleted.

.npmrc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
optional=false

.vscode/settings.json

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,5 @@
66
"isnan",
77
"paren"
88
],
9-
"docwriter.style": "JSDoc",
10-
"workbench.colorCustomizations": {
11-
"editor.lineHighlightBackground": "#1073cf2d",
12-
"editor.lineHighlightBorder": "#9fced11f"
13-
},
14-
"sarif-viewer.connectToGithubCodeScanning": "on"
9+
"docwriter.style": "JSDoc"
1510
}

conf.json

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
{
2-
"plugins": ["jsDocPlugins/category"],
3-
"categoryfile" : "jsDocPlugins/category.json"
4-
}
2+
"plugins": [
3+
"jsDocPlugins/category"
4+
],
5+
"categoryfile": "jsDocPlugins/category.json"
6+
}

eslint.config.js

Lines changed: 10 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,11 @@ export default [
3535
'.eslintignore',
3636
'**/*.mjs'
3737
],
38-
files: ['**/*.js'],
38+
files: [
39+
'**/*.js',
40+
'**/*.umm',
41+
'**/*.uml'
42+
],
3943
languageOptions: {
4044
parser: babelParser,
4145
parserOptions: {
@@ -61,8 +65,10 @@ export default [
6165
'@stylistic/array-element-newline': [
6266
'error',
6367
{
64-
multiline: true,
65-
minItems: 3
68+
ArrayExpression: 'consistent',
69+
ArrayPattern: {
70+
minItems: 2
71+
}
6672
}
6773
],
6874
'@stylistic/arrow-parens': ['error', 'always'],
@@ -164,18 +170,7 @@ export default [
164170
}
165171
],
166172
'@stylistic/no-confusing-arrow': 'error',
167-
'@stylistic/no-extra-parens': [
168-
'error',
169-
'all',
170-
{
171-
conditionalAssign: false,
172-
enforceForSequenceExpressions: false,
173-
nestedBinaryExpressions: false,
174-
returnAssign: false,
175-
ternaryOperandBinaryExpressions: false,
176-
enforceForFunctionPrototypeMethods: false,
177-
}
178-
],
173+
'@stylistic/no-extra-parens': 'off',
179174
'@stylistic/no-extra-semi': 'error',
180175
'@stylistic/no-floating-decimal': 'error',
181176
'@stylistic/no-mixed-operators': 'error',

0 commit comments

Comments
 (0)