File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -11,8 +11,6 @@ name: Check Transpiled JavaScript
1111
1212on :
1313 pull_request :
14- branches :
15- - main
1614 push :
1715 branches :
1816 - main
Original file line number Diff line number Diff line change @@ -2,8 +2,6 @@ name: Continuous Integration
22
33on :
44 pull_request :
5- branches :
6- - main
75 push :
86 branches :
97 - main
Original file line number Diff line number Diff line change @@ -2,8 +2,6 @@ name: CodeQL
22
33on :
44 pull_request :
5- branches :
6- - main
75 push :
86 branches :
97 - main
Original file line number Diff line number Diff line change @@ -7,8 +7,6 @@ name: Lint Codebase
77
88on :
99 pull_request :
10- branches :
11- - main
1210 push :
1311 branches :
1412 - main
Original file line number Diff line number Diff line change @@ -2,8 +2,6 @@ name: Signal Handling Test
22
33on :
44 pull_request :
5- branches :
6- - main
75 push :
86 branches :
97 - main
Original file line number Diff line number Diff line change 11// See: https://eslint.org/docs/latest/use/configure/configuration-files
22
3- import { fixupPluginRules } from '@eslint/compat'
43import { FlatCompat } from '@eslint/eslintrc'
54import js from '@eslint/js'
65import typescriptEslint from '@typescript-eslint/eslint-plugin'
76import tsParser from '@typescript-eslint/parser'
8- import _import from 'eslint-plugin-import'
97import jest from 'eslint-plugin-jest'
108import prettier from 'eslint-plugin-prettier'
119import 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' ,
You can’t perform that action at this time.
0 commit comments