Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
5 changes: 0 additions & 5 deletions .eslintignore

This file was deleted.

158 changes: 0 additions & 158 deletions .eslintrc.js

This file was deleted.

3 changes: 1 addition & 2 deletions .github/workflows/test-public-workflows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,11 +67,10 @@ jobs:
js:
- '.github/workflows/reusable-lint-css-js-public.yml'
- '.github/workflows/test-public-workflows.yml'
- '.eslintrc.js'
- 'eslint.config.mjs'
- '.nvmrc'
- '.prettierrc.js'
- 'package*.json'
- '.eslintrc*'
- 'tsconfig*.json'
css:
- '.stylelintignore'
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
- Sensible [dependabot.yml](.github/dependabot.yml) for automated dependency updates.
- Reusable GitHub workflows for CI ([README.md](.github/workflows/README.md))
- Tooling & Testing:
- [ESlint](.eslintrc.js)
- [ESlint](eslint.config.mjs)
- [PHP_CodeSniffer](.phpcs.xml.dist)
- [PHPStan](phpstan.neon.dist)
- [Prettier](.prettierrc)
Expand Down
14 changes: 7 additions & 7 deletions composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 2 additions & 3 deletions docs/DEVELOPMENT.md
Original file line number Diff line number Diff line change
Expand Up @@ -135,8 +135,6 @@ Code contributions, bug reports, and feature requests are welcome! The following
├── .browserslistrc # Browserslist configuration.
├── .distignore # Files to exclude from installation via Composer.
├── .editorconfig # Editor configuration.
├── .eslintignore # ESLint ignore patterns.
├── .eslintrc.js # ESLint configuration.
├── .gitignore # Git ignore rules.
├── .gitattributes # Git attributes.
├── .lefthook.yml # Git hooks configuration.
Expand All @@ -152,6 +150,7 @@ Code contributions, bug reports, and feature requests are welcome! The following
├── blueprint.json # WordPress Playground blueprint configuration.
├── babel.config.js # Babel configuration.
├── composer.json # PHP dependencies.
├── eslint.config.mjs # ESLint configuration.
├── jest.config.js # Jest configuration.
├── LICENSE.md # License file.
├── package.json # Node.js dependencies.
Expand Down Expand Up @@ -277,7 +276,7 @@ This project uses several tools to ensure code quality and standards are maintai

This project uses [ESLint](https://eslint.org) through `@wordpress/scripts` and `@wordpress/eslint-plugin` for JavaScript linting, following WordPress coding standards and best practices.

Our specific ESLint configuration is defined in the [`.eslintrc.js`](../.eslintrc.js) file.
Our specific ESLint configuration is defined in the [`eslint.config.mjs`](../eslint.config.mjs) file.

You can run ESLint on JavaScript files using:

Expand Down
Loading
Loading