Skip to content

Commit d665dee

Browse files
committed
chore(deps): update dependencies and third party integrations
1 parent 203c669 commit d665dee

File tree

7 files changed

+3996
-10072
lines changed

7 files changed

+3996
-10072
lines changed

CONTRIBUTING.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,5 +16,5 @@ top of things.
1616

1717
# Additional Resources
1818

19-
* [General GitHub documentation](http://help.github.com/)
20-
* [GitHub pull request documentation](http://help.github.com/send-pull-requests/)
19+
* [General GitHub documentation](https://docs.github.com/)
20+
* [GitHub pull request documentation](https://docs.github.com/en/pull-requests)

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ docker pull fonoster/routr-{processor}:%%VERSION%%
3333

3434
## Usage Example
3535

36-
{An example of running the container. Most Fonoster services use docker-compose, and docker run is also beneficial.}
36+
{An example of running the container. Most Routr services use docker compose, and docker run is also beneficial.}
3737

3838
The following is a basic example of using this image.
3939

@@ -56,7 +56,7 @@ Optional specification notes.
5656

5757
## Environment Variables
5858

59-
Environment variables are used in the entry point script to render configuration templates. You can specify the values of these variables during `docker run`, `docker-compose up`, or in Kubernetes manifests in the `env` array.
59+
Environment variables are used in the entry point script to render configuration templates. You can specify the values of these variables during `docker run`, `docker compose up`, or in Kubernetes manifests in the `env` array.
6060

6161
{Each environment variable might have 1-2 sentences of description. For anything longer, we should probably have a sub-section within Specs to elaborate.}
6262

@@ -79,7 +79,7 @@ Environment variables are used in the entry point script to render configuration
7979

8080
## Contributing
8181

82-
Please read [CONTRIBUTING.md](https://github.com/fonoster/fonoster/blob/master/CONTRIBUTING.md) for details on our code of conduct and the process for submitting pull requests to us.
82+
Please read [CONTRIBUTING.md](https://github.com/fonoster/nodejs-processor/blob/main/CONTRIBUTING.md) for details on our code of conduct and the process for submitting pull requests to us.
8383

8484
## Authors
8585

@@ -89,4 +89,4 @@ See the List of contributors who [participated](https://github.com/fonoster/node
8989

9090
## License
9191

92-
Copyright (C) 2024 by Fonoster Inc. MIT License (see [LICENSE](https://github.com/fonoster/fonoster/blob/master/LICENSE) for details).
92+
Copyright (C) 2025 by Fonoster Inc. MIT License (see [LICENSE](https://github.com/fonoster/nodejs-processor/blob/main/LICENSE) for details).
File renamed without changes.

eslint.config.js

Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
const js = require('@eslint/js');
2+
const typescript = require('@typescript-eslint/eslint-plugin');
3+
const typescriptParser = require('@typescript-eslint/parser');
4+
const prettier = require('eslint-plugin-prettier');
5+
const notice = require('eslint-plugin-notice');
6+
7+
module.exports = [
8+
js.configs.recommended,
9+
{
10+
files: ['**/*.ts'],
11+
languageOptions: {
12+
parser: typescriptParser,
13+
parserOptions: {
14+
ecmaVersion: 2020,
15+
sourceType: 'module',
16+
},
17+
globals: {
18+
process: 'readonly',
19+
__filename: 'readonly',
20+
module: 'readonly',
21+
require: 'readonly',
22+
console: 'readonly',
23+
Buffer: 'readonly',
24+
global: 'readonly',
25+
},
26+
},
27+
plugins: {
28+
'@typescript-eslint': typescript,
29+
prettier,
30+
notice,
31+
},
32+
rules: {
33+
...typescript.configs.recommended.rules,
34+
quotes: ['error', 'double'],
35+
'notice/notice': [
36+
'error',
37+
{
38+
mustMatch: 'Licensed under the MIT License',
39+
templateFile: '.scripts/copyright.js',
40+
},
41+
],
42+
'no-console': 1,
43+
'prettier/prettier': 2,
44+
},
45+
},
46+
];

0 commit comments

Comments
 (0)