Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

test: add tests for eslint-plugin-import-x #37

Merged
merged 38 commits into from
Nov 28, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
38 commits
Select commit Hold shift + click to select a range
ea611d9
test: add test for `eslint-plugin-import-x`
9romise Sep 16, 2024
edcae8b
Merge branch 'main' into test
9romise Nov 20, 2024
146184e
test: add test for `extensions` and `first`
9romise Nov 20, 2024
5237efa
fix: set test cases' default options
9romise Nov 23, 2024
f1abe48
test: add test for `default`
9romise Nov 23, 2024
2d20281
fix: move fixtures' tsconfig to own dir
9romise Nov 23, 2024
a5f1952
test: add test for `export`
9romise Nov 23, 2024
a600147
test: add test for `namespace`
9romise Nov 23, 2024
bf079d2
Merge branch 'main' into test
9romise Nov 24, 2024
c9afe92
test: add test for `named`
9romise Nov 24, 2024
5d98fdc
test: add test for `no-default-export`
9romise Nov 24, 2024
80ada52
test: add test for `no-deprecated`
9romise Nov 24, 2024
4f32f8d
test: add test for `no-internal-modules`
9romise Nov 24, 2024
4ee9ad2
test: add test for `prefer-default-export`
9romise Nov 25, 2024
98909af
test: add test for `order`
9romise Nov 25, 2024
7dd7fa6
Merge branch 'main' into test
9romise Nov 25, 2024
5b9a7d4
fix: ensure resolver reinitializes when options change
9romise Nov 25, 2024
34394ba
Merge branch 'main' into test
9romise Nov 25, 2024
9422acb
test: add test for `no-rename-default`
9romise Nov 25, 2024
9d8507f
test: add test for `no-named-as-default`
9romise Nov 25, 2024
8cdea16
fix: resolver's options for test
9romise Nov 25, 2024
65efcbc
fix: ensure resolver reinitializes when options change
9romise Nov 25, 2024
6a7f505
feat: bump `oxc-resolver` to 2.1.1
9romise Nov 25, 2024
bc9027c
ci: add type check
9romise Nov 25, 2024
0a60a7c
Merge branch 'test' of https://github.com/9romise/eslint-import-resol…
9romise Nov 26, 2024
a461ead
test: add test for `no-restricted-paths`
9romise Nov 26, 2024
cb67928
Merge branch 'main' into test
9romise Nov 26, 2024
00ee12c
ci: fix type check
9romise Nov 26, 2024
b49c302
test: add test for `no-unresolved`
9romise Nov 26, 2024
3c92a39
test: add test for `no-duplicates`
9romise Nov 26, 2024
7153a0a
test: add test for `no-extraneous-dependencies`
9romise Nov 26, 2024
b8da809
test: add test for `no-cycle`
9romise Nov 26, 2024
595dbc3
fix: use local file to test
9romise Nov 27, 2024
bf0d2ff
Merge branch 'main' into test
9romise Nov 27, 2024
51e5e76
chore: update lockfile
9romise Nov 27, 2024
dd64642
ci: try fix
9romise Nov 27, 2024
85272ee
ci: try fix
9romise Nov 27, 2024
bbaaaed
test: update cases related to `no-cycle`
9romise Nov 28, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -19,3 +19,5 @@ pnpm-debug.log*
*.njsproj
*.sln
*.sw?

!tests/**/node_modules/
4 changes: 1 addition & 3 deletions eslint.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,5 @@
import { defineConfig } from '@vida0905/eslint-config'

export default defineConfig({
settings: {
'import-x/resolver': 'oxc',
},
ignores: ['**/fixtures/**'],
})
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,7 @@
"@vida0905/eslint-config": "^1.1.0",
"bumpp": "^9.8.1",
"eslint": "^9.15.0",
"eslint-vitest-rule-tester": "^0.6.1",
"lint-staged": "^15.2.10",
"simple-git-hooks": "^2.11.1",
"tsup": "^8.3.5",
Expand Down
Loading