Skip to content

Commit 5a447e3

Browse files
authored
Merge pull request #47 from retailnext/copilot/sub-pr-46
2 parents b3ec57d + d7f54d5 commit 5a447e3

8 files changed

Lines changed: 256 additions & 3164 deletions

File tree

.github/workflows/check-dist.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,6 @@ name: Check Transpiled JavaScript
1111

1212
on:
1313
pull_request:
14-
branches:
15-
- main
1614
push:
1715
branches:
1816
- main

.github/workflows/ci.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@ name: Continuous Integration
22

33
on:
44
pull_request:
5-
branches:
6-
- main
75
push:
86
branches:
97
- main

.github/workflows/codeql-analysis.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@ name: CodeQL
22

33
on:
44
pull_request:
5-
branches:
6-
- main
75
push:
86
branches:
97
- main

.github/workflows/linter.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,6 @@ name: Lint Codebase
77

88
on:
99
pull_request:
10-
branches:
11-
- main
1210
push:
1311
branches:
1412
- main

.github/workflows/signal-test.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@ name: Signal Handling Test
22

33
on:
44
pull_request:
5-
branches:
6-
- main
75
push:
86
branches:
97
- main

eslint.config.mjs

Lines changed: 0 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,9 @@
11
// See: https://eslint.org/docs/latest/use/configure/configuration-files
22

3-
import { fixupPluginRules } from '@eslint/compat'
43
import { FlatCompat } from '@eslint/eslintrc'
54
import js from '@eslint/js'
65
import typescriptEslint from '@typescript-eslint/eslint-plugin'
76
import tsParser from '@typescript-eslint/parser'
8-
import _import from 'eslint-plugin-import'
97
import jest from 'eslint-plugin-jest'
108
import prettier from 'eslint-plugin-prettier'
119
import globals from 'globals'
@@ -29,7 +27,6 @@ export default [
2927
),
3028
{
3129
plugins: {
32-
import: fixupPluginRules(_import),
3330
jest,
3431
prettier,
3532
'@typescript-eslint': typescriptEslint
@@ -64,21 +61,11 @@ export default [
6461
}
6562
},
6663

67-
settings: {
68-
'import/resolver': {
69-
typescript: {
70-
alwaysTryTypes: true,
71-
project: 'tsconfig.json'
72-
}
73-
}
74-
},
75-
7664
rules: {
7765
camelcase: 'off',
7866
'eslint-comments/no-use': 'off',
7967
'eslint-comments/no-unused-disable': 'off',
8068
'i18n-text/no-en': 'off',
81-
'import/no-namespace': 'off',
8269
'no-console': 'off',
8370
'no-shadow': 'off',
8471
'no-unused-vars': 'off',

0 commit comments

Comments
 (0)