Skip to content

Commit 4f392d0

Browse files
authored
Merge pull request #66 from eugene-serb/dev
Release 2.0.6
2 parents b035268 + 1de25f0 commit 4f392d0

File tree

15 files changed

+6809
-4871
lines changed

15 files changed

+6809
-4871
lines changed

.eslintrc.js

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

.github/ISSUE_TEMPLATE/bug_report.md

Lines changed: 8 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,14 @@ about: Create a report to help us improve
44
title: ''
55
labels: ''
66
assignees: ''
7+
78
---
89

910
**Describe the bug**
1011
A clear and concise description of what the bug is.
1112

1213
**To Reproduce**
1314
Steps to reproduce the behavior:
14-
1515
1. Go to '...'
1616
2. Click on '....'
1717
3. Scroll down to '....'
@@ -24,17 +24,15 @@ A clear and concise description of what you expected to happen.
2424
If applicable, add screenshots to help explain your problem.
2525

2626
**Desktop (please complete the following information):**
27-
28-
- OS: [e.g. iOS]
29-
- Browser [e.g. chrome, safari]
30-
- Version [e.g. 22]
27+
- OS: [e.g. iOS]
28+
- Browser [e.g. chrome, safari]
29+
- Version [e.g. 22]
3130

3231
**Smartphone (please complete the following information):**
33-
34-
- Device: [e.g. iPhone6]
35-
- OS: [e.g. iOS8.1]
36-
- Browser [e.g. stock browser, safari]
37-
- Version [e.g. 22]
32+
- Device: [e.g. iPhone6]
33+
- OS: [e.g. iOS8.1]
34+
- Browser [e.g. stock browser, safari]
35+
- Version [e.g. 22]
3836

3937
**Additional context**
4038
Add any other context about the problem here.

.github/ISSUE_TEMPLATE/custom.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,7 @@ about: Describe this issue template's purpose here.
44
title: ''
55
labels: ''
66
assignees: ''
7+
78
---
9+
10+

.github/ISSUE_TEMPLATE/feature_request.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ about: Suggest an idea for this project
44
title: ''
55
labels: ''
66
assignees: ''
7+
78
---
89

910
**Is your feature request related to a problem? Please describe.**

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ jobs:
1414
build:
1515
strategy:
1616
matrix:
17-
node-version: [20]
18-
os: [ubuntu-22.04]
17+
node-version: [24]
18+
os: [ubuntu-24.04]
1919

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

.github/workflows/deploy.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ jobs:
1313
build-and-deploy:
1414
strategy:
1515
matrix:
16-
node-version: [20]
17-
os: [ubuntu-22.04]
16+
node-version: [24]
17+
os: [ubuntu-24.04]
1818

1919
concurrency: ci-${{ github.ref }}
2020

.github/workflows/format.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ jobs:
1414
format:
1515
strategy:
1616
matrix:
17-
node-version: [20]
18-
os: [ubuntu-22.04]
17+
node-version: [24]
18+
os: [ubuntu-24.04]
1919

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

.github/workflows/lint.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ jobs:
1414
lint:
1515
strategy:
1616
matrix:
17-
node-version: [20]
18-
os: [ubuntu-22.04]
17+
node-version: [24]
18+
os: [ubuntu-24.04]
1919

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

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ jobs:
1414
test:
1515
strategy:
1616
matrix:
17-
node-version: [20]
18-
os: [ubuntu-22.04]
17+
node-version: [24]
18+
os: [ubuntu-24.04]
1919

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

eslint.config.js

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
'use strict';
2+
3+
const { defineConfig } = require('eslint/config');
4+
5+
const globals = require('globals');
6+
const babelParser = require('@babel/eslint-parser');
7+
const js = require('@eslint/js');
8+
9+
const { FlatCompat } = require('@eslint/eslintrc');
10+
11+
const compat = new FlatCompat({
12+
baseDirectory: __dirname,
13+
recommendedConfig: js.configs.recommended,
14+
allConfig: js.configs.all,
15+
});
16+
17+
module.exports = defineConfig([
18+
{
19+
languageOptions: {
20+
globals: {
21+
...globals.browser,
22+
...globals.node,
23+
...globals.jest,
24+
},
25+
26+
parser: babelParser,
27+
ecmaVersion: 'latest',
28+
sourceType: 'module',
29+
parserOptions: {},
30+
},
31+
32+
extends: compat.extends('eslint:recommended', 'prettier'),
33+
},
34+
]);

0 commit comments

Comments
 (0)