Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
15 commits
Select commit Hold shift + click to select a range
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
1 change: 0 additions & 1 deletion .github/FUNDING.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
# https://docs.github.com/en/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/displaying-a-sponsor-button-in-your-repository
github: D3strukt0r
patreon: d3strukt0r
open_collective: d3strukt0r
buy_me_a_coffee: d3strukt0r
50 changes: 0 additions & 50 deletions .github/ISSUE_TEMPLATE/1-bug-report.yml

This file was deleted.

41 changes: 0 additions & 41 deletions .github/ISSUE_TEMPLATE/2-feature-request.yml

This file was deleted.

5 changes: 0 additions & 5 deletions .github/ISSUE_TEMPLATE/config.yml

This file was deleted.

Empty file.
25 changes: 0 additions & 25 deletions .github/feature-or-bug.md

This file was deleted.

6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ name: CI

on:
push:
branches: [main]
branches: [main, develop]
pull_request:
branches: [main]
branches: [main, develop]

permissions:
contents: read
Expand All @@ -22,7 +22,7 @@ jobs:
node-version: 24.x

- name: Install pnpm
uses: pnpm/action-setup@v4
uses: pnpm/action-setup@v5

- name: Get pnpm cache directory path
id: pnpm-cache-dir-path
Expand Down
9 changes: 5 additions & 4 deletions .github/workflows/label.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,15 @@ name: Labeler

on: [pull_request]

permissions:
contents: read
pull-requests: write # Adding Existing Labels
issues: write # Creating New Labels

jobs:
label:
name: Label PR
runs-on: ubuntu-latest
permissions:
contents: read
pull-requests: write # Adding Existing Labels
issues: write # Creating New Labels
steps:
- name: Label PR
uses: actions/labeler@v6
Expand Down
11 changes: 5 additions & 6 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,13 @@ on:
branches:
- main

permissions:
contents: write
issues: write
pull-requests: write

jobs:
release-please:
runs-on: ubuntu-latest
permissions:
contents: write
issues: write
pull-requests: write
outputs:
release_created: ${{ steps.release.outputs.release_created }}
steps:
Expand All @@ -39,7 +38,7 @@ jobs:
registry-url: https://registry.npmjs.org

- name: Install pnpm
uses: pnpm/action-setup@v4
uses: pnpm/action-setup@v5

- name: Get pnpm cache directory path
id: pnpm-cache-dir-path
Expand Down
5 changes: 0 additions & 5 deletions ACKNOWLEDGMENTS.md

This file was deleted.

5 changes: 0 additions & 5 deletions AUTHORS.md

This file was deleted.

14 changes: 7 additions & 7 deletions CLAUDE.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ Note: Tests are not yet implemented.

The package exports two configs from separate entry points:

- **`iwfStandardTs`** (`src/standard-ts.ts`) — Full config with TypeScript strict checking, React, and all style rules. Imports and extends the JS config.
- **`iwfStandardJs`** (`src/standard-js.ts`) — Base config with React and style rules, without TypeScript.
- **`iwfWebStandardTs`** (`src/standard-ts.ts`) — Full config with TypeScript strict checking, React, and all style rules. Imports and extends the JS config.
- **`iwfWebStandardJs`** (`src/standard-js.ts`) — Base config with React and style rules, without TypeScript.
- **`src/index.ts`** — Barrel re-export of both configs.

`standard-js.ts` also exports `baseOptions` and `baseRules` constants, which `standard-ts.ts` imports to extend with TS-specific rules.
Expand All @@ -35,15 +35,15 @@ The package exports two configs from separate entry points:

```typescript
// TypeScript project
import { iwfStandardTs } from '@iwf-web/eslint-coding-standard';
export default iwfStandardTs();
import { iwfWebStandardTs } from '@iwf-web/eslint-coding-standard';
export default iwfWebStandardTs();

// JavaScript-only project
import { iwfStandardJs } from '@iwf-web/eslint-coding-standard';
export default iwfStandardJs();
import { iwfWebStandardJs } from '@iwf-web/eslint-coding-standard';
export default iwfWebStandardJs();

// Subpath imports also available
import { iwfStandardTs } from '@iwf-web/eslint-coding-standard/standard-ts';
import { iwfWebStandardTs } from '@iwf-web/eslint-coding-standard/standard-ts';
```

Both functions accept `(options?, ...userConfigs)` — options override `antfu()` defaults, userConfigs are additional ESLint flat config objects appended after the IWF rules.
Expand Down
83 changes: 0 additions & 83 deletions CODE_OF_CONDUCT.md

This file was deleted.

Loading
Loading