Skip to content

Commit 9db39e9

Browse files
committed
Update deps
1 parent 367c1a6 commit 9db39e9

File tree

6 files changed

+111
-193
lines changed

6 files changed

+111
-193
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ jobs:
4747
name: Build
4848
strategy:
4949
matrix:
50-
os: [ubuntu-20.04, windows-2022, macos-14, [self-hosted, linux, ARM64]]
50+
os: [ubuntu-20.04, windows-2022, macos-14]
5151

5252
runs-on: ${{ matrix.os }}
5353

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
name: Unit Tests
1717
strategy:
1818
matrix:
19-
os: [ubuntu-20.04, windows-2022, macos-14, [self-hosted, linux, ARM64]]
19+
os: [ubuntu-20.04, windows-2022, macos-14]
2020

2121
runs-on: ${{ matrix.os }}
2222

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2024 Luis Blanco
3+
Copyright (c) 2025 Luis Blanco
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

eslint.config.js

Lines changed: 1 addition & 92 deletions
Original file line numberDiff line numberDiff line change
@@ -1,94 +1,3 @@
11
'use strict';
22

3-
const js = require('@eslint/js');
4-
5-
6-
module.exports = [
7-
js.configs.recommended,
8-
{
9-
languageOptions: {
10-
'parserOptions': {
11-
'ecmaVersion': 2022,
12-
sourceType: 'commonjs'
13-
},
14-
globals: {
15-
global: 'readonly',
16-
require: 'readonly',
17-
Buffer: 'readonly',
18-
module: 'readonly',
19-
console: 'readonly',
20-
__dirname: 'readonly',
21-
process: 'readonly',
22-
},
23-
},
24-
'rules': {
25-
'arrow-parens': ['error', 'always'],
26-
'no-trailing-spaces': [
27-
'error',
28-
{
29-
'skipBlankLines': true
30-
}
31-
],
32-
'indent': [
33-
'error',
34-
'tab',
35-
{
36-
'SwitchCase': 1
37-
}
38-
],
39-
'operator-linebreak': [
40-
'error',
41-
'after',
42-
{
43-
'overrides': {
44-
'?': 'before',
45-
':': 'before'
46-
}
47-
}
48-
],
49-
'max-len': ['error', 110],
50-
'quotes': [
51-
'error',
52-
'single'
53-
],
54-
'semi': [
55-
'error',
56-
'always'
57-
],
58-
'no-multiple-empty-lines': ['error', { 'max': 3, 'maxEOF': 1, 'maxBOF': 1 }],
59-
'keyword-spacing': ['error', { 'before': true, 'after': true }],
60-
'space-before-blocks': ['error'],
61-
'space-before-function-paren': [
62-
'error', {'anonymous': 'always', 'named': 'never', 'asyncArrow': 'always'}
63-
],
64-
'camelcase': ['error'],
65-
'no-tabs': [0],
66-
'no-unused-vars': [
67-
'error',
68-
{
69-
'argsIgnorePattern': '^_',
70-
'varsIgnorePattern': '^_',
71-
'caughtErrorsIgnorePattern': '^_'
72-
}
73-
],
74-
'global-require': [0],
75-
'no-underscore-dangle': [0],
76-
'no-plusplus': [0],
77-
'no-shadow': [0],
78-
'node/no-unpublished-require': [0],
79-
'no-process-exit': [0],
80-
'linebreak-style': [0],
81-
'node/no-missing-require': [0],
82-
'no-console': [0],
83-
'node/no-unsupported-features/es-builtins': 0,
84-
'node/no-unsupported-features/node-builtins': 0,
85-
'func-names': [
86-
'error',
87-
'never',
88-
{
89-
'generators': 'never'
90-
}
91-
]
92-
}
93-
},
94-
];
3+
module.exports = require('addon-tools-raub/utils/eslint-common');

0 commit comments

Comments
 (0)