Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: sxzz/eslint-config
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v3.8.4
Choose a base ref
...
head repository: sxzz/eslint-config
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v3.8.5
Choose a head ref
  • 2 commits
  • 2 files changed
  • 1 contributor

Commits on Mar 4, 2024

  1. fix: ignore import_map.json for filename-case

    sxzz committed Mar 4, 2024
    Copy the full SHA
    db19c36 View commit details
  2. chore: release v3.8.5

    sxzz committed Mar 4, 2024
    Copy the full SHA
    21861a3 View commit details
Showing with 2 additions and 2 deletions.
  1. +1 −1 package.json
  2. +1 −1 src/configs/unicorn.ts
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@sxzz/eslint-config",
"version": "3.8.4",
"version": "3.8.5",
"packageManager": "pnpm@8.15.3",
"description": "ESLint config for @sxzz.",
"type": "module",
2 changes: 1 addition & 1 deletion src/configs/unicorn.ts
Original file line number Diff line number Diff line change
@@ -17,7 +17,7 @@ export const unicorn: FlatESLintConfigItem[] = [
'error',
{
cases: { kebabCase: true, pascalCase: true },
ignore: [/^[A-Z]+\..*$/],
ignore: [/^[A-Z]+\..*$/, /import_map\.json/],
},
],
'unicorn/new-for-builtins': 'error',