-
Notifications
You must be signed in to change notification settings - Fork 62
chore: update maintenance dependencies #208
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
Merged
+171
−63
Merged
Changes from all commits
Commits
Show all changes
19 commits
Select commit
Hold shift + click to select a range
76ccce0
chore: update maintenance dependencies
afc163 4d81f30
fix: align TypeScript and ESLint compatibility
afc163 22c27b3
chore: use testing-library dom events
afc163 a4b99a3
test: keep react testing event behavior
afc163 8ff3bba
ci: skip custom CodeQL on pull requests
afc163 3ea9045
chore: address review comments
afc163 e417f9b
fix: keep compatible eslint export rule
afc163 a360fe4
chore: remove react type compatibility shim
afc163 169c44d
docs: use ut install for local setup
afc163 d1940db
chore: restore vercel install command
afc163 4223562
chore: align maintenance dependencies
afc163 56fef88
chore: fix upgraded test tooling
afc163 ae5a85e
fix: preserve React peer dependency range
afc163 8fadb1f
docs: use npm install in README
afc163 aeef5a5
chore: remove redundant strict tsconfig flags
afc163 58d0878
chore: remove manual global test declarations
afc163 01201cf
chore: migrate to native eslint flat config
afc163 77d42cc
chore: address review comments
afc163 fb0aa31
fix: keep codeql workflow compatible with default setup
afc163 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,115 @@ | ||
| import js from '@eslint/js'; | ||
| import { defineConfig } from 'eslint/config'; | ||
| import { dirname } from 'node:path'; | ||
| import { fileURLToPath } from 'node:url'; | ||
| import prettier from 'eslint-config-prettier'; | ||
| import jest from 'eslint-plugin-jest'; | ||
| import react from 'eslint-plugin-react'; | ||
| import reactHooks from 'eslint-plugin-react-hooks'; | ||
| import globals from 'globals'; | ||
| import tseslint from 'typescript-eslint'; | ||
|
|
||
| const tsconfigRootDir = dirname(fileURLToPath(import.meta.url)); | ||
|
|
||
| export default defineConfig([ | ||
| { | ||
| plugins: { | ||
| '@typescript-eslint': tseslint.plugin, | ||
| }, | ||
| }, | ||
| { | ||
| linterOptions: { | ||
| reportUnusedDisableDirectives: 'warn', | ||
| }, | ||
| }, | ||
| { | ||
| ignores: [ | ||
| 'node_modules/', | ||
| 'coverage/', | ||
| 'es/', | ||
| 'lib/', | ||
| 'dist/', | ||
| 'docs-dist/', | ||
| '.docs-dist/', | ||
| '.dumi/', | ||
| '.doc/', | ||
| '.vercel/', | ||
| ], | ||
| }, | ||
| { | ||
| files: ['**/*.{js,jsx,ts,tsx}'], | ||
| extends: [ | ||
| js.configs.recommended, | ||
| react.configs.flat.recommended, | ||
| react.configs.flat['jsx-runtime'], | ||
| prettier, | ||
| ], | ||
| plugins: { | ||
| 'react-hooks': reactHooks, | ||
| }, | ||
| languageOptions: { | ||
| globals: { | ||
| ...globals.browser, | ||
| ...globals.node, | ||
| }, | ||
| }, | ||
| settings: { | ||
| react: { | ||
| version: 'detect', | ||
| }, | ||
| }, | ||
| rules: { | ||
| 'no-async-promise-executor': 'off', | ||
| 'no-empty-pattern': 'off', | ||
| 'no-irregular-whitespace': 'off', | ||
| 'no-prototype-builtins': 'off', | ||
| 'no-useless-escape': 'off', | ||
| 'no-extra-boolean-cast': 'off', | ||
| 'no-undef': 'off', | ||
| 'no-unused-vars': 'off', | ||
| 'react/no-find-dom-node': 'off', | ||
| 'react/display-name': 'off', | ||
| 'react/no-unknown-property': 'off', | ||
| 'react/prop-types': 'off', | ||
| 'react-hooks/exhaustive-deps': 'warn', | ||
| 'react-hooks/rules-of-hooks': 'error', | ||
| }, | ||
| }, | ||
| { | ||
| files: ['**/*.{ts,tsx}'], | ||
| extends: [...tseslint.configs.recommended], | ||
| rules: { | ||
| '@typescript-eslint/ban-ts-comment': 'off', | ||
| '@typescript-eslint/no-empty-object-type': 'off', | ||
| '@typescript-eslint/no-explicit-any': 'off', | ||
| '@typescript-eslint/no-unsafe-function-type': 'off', | ||
| '@typescript-eslint/no-unnecessary-type-constraint': 'off', | ||
| '@typescript-eslint/no-unused-vars': 'off', | ||
| }, | ||
| }, | ||
| { | ||
| files: ['src/**/*.{ts,tsx}'], | ||
| languageOptions: { | ||
| parserOptions: { | ||
| projectService: true, | ||
| tsconfigRootDir, | ||
| }, | ||
| }, | ||
| }, | ||
| { | ||
| files: ['tests/**/*.{js,jsx,ts,tsx}', '**/*.{test,spec}.{js,jsx,ts,tsx}'], | ||
| extends: [jest.configs['flat/recommended']], | ||
| rules: { | ||
| 'jest/no-disabled-tests': 'off', | ||
| 'jest/no-done-callback': 'off', | ||
| 'jest/no-identical-title': 'off', | ||
| 'jest/expect-expect': 'off', | ||
| 'jest/no-alias-methods': 'off', | ||
| 'jest/no-conditional-expect': 'off', | ||
| 'jest/no-export': 'off', | ||
| 'jest/no-standalone-expect': 'off', | ||
| 'jest/valid-expect': 'off', | ||
| 'jest/valid-title': 'off', | ||
| }, | ||
| }, | ||
| ]); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,11 @@ | ||
| /// <reference types="jest" /> | ||
| /// <reference types="node" /> | ||
| /// <reference types="react" /> | ||
| /// <reference types="react-dom" /> | ||
| /// <reference types="@testing-library/jest-dom" /> | ||
|
|
||
| declare module '*.css'; | ||
| declare module '*.less'; | ||
| declare module 'jsonp'; | ||
|
|
||
| declare module 'moment/locale/zh-cn'; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,38 +1,19 @@ | ||
| { | ||
| "compilerOptions": { | ||
| "target": "esnext", | ||
| "moduleResolution": "node", | ||
| "baseUrl": "./", | ||
| "moduleResolution": "bundler", | ||
| "jsx": "react", | ||
| "declaration": true, | ||
| "skipLibCheck": true, | ||
| "esModuleInterop": true, | ||
| "paths": { | ||
| "@/*": [ | ||
| "src/*" | ||
| ], | ||
| "@@/*": [ | ||
| ".dumi/tmp/*" | ||
| ], | ||
| "@rc-component/rate": [ | ||
| "src/index.tsx" | ||
| ] | ||
| "@/*": ["./src/*"], | ||
| "@@/*": ["./.dumi/tmp/*"], | ||
| "@rc-component/rate": ["./src/index.tsx"] | ||
| }, | ||
| "ignoreDeprecations": "5.0" | ||
| "strict": false, | ||
| "module": "ESNext" | ||
| }, | ||
| "include": [ | ||
| ".fatherrc.ts", | ||
| ".dumirc.ts", | ||
| "src", | ||
| "docs", | ||
| "tests" | ||
| ], | ||
| "exclude": [ | ||
| "node_modules", | ||
| "lib", | ||
| "es", | ||
| "dist", | ||
| "docs-dist", | ||
| ".dumi" | ||
| ] | ||
| "include": ["global.d.ts", ".fatherrc.ts", ".dumirc.ts", "src", "docs", "tests"], | ||
| "exclude": ["node_modules", "lib", "es", "dist", "docs-dist", ".dumi"] | ||
| } |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.