eslint-plugin-local-rules icon indicating copy to clipboard operation
eslint-plugin-local-rules copied to clipboard

A plugin for ESLint that allows you to use project-specific rules

Results 7 eslint-plugin-local-rules issues
Sort by recently updated
recently updated
newest added

Bumps [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite) from 2.9.16 to 2.9.18. Changelog Sourced from vite's changelog. 2.9.18 (2024-03-24) fix: port #15653 to v2 (#15657) (1f855dc), closes #15653 #15657 fix: port #16250 to v2 (#16254) (011bbca),...

dependencies

Closes https://github.com/cletusw/eslint-plugin-local-rules/issues/22 Missing: - [x] I haven't tried this yet - [x] Add mention to readme

Once the rules start to pile up, it's easier to keep them in separate files. Currently I have this in `index.js`: ```js const fs = require("node:fs"); const path = require("node:path");...

I tried this, but none of them work ```js module.exports = { root: true, env: { node: true }, plugins: ['eslint-plugin-local-rules'], extends: [ 'eslint:recommended', 'plugin:vue/essential', 'plugin:eslint-plugin-local-rules', // nope 'plugin:eslint-plugin-local-rules:recommended', //...

Would be nice to add examples how to use this with modern flat config.

Bumps [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite) to 5.4.6 and updates ancestor dependency [vitest](https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest). These dependencies need to be updated together. Updates `vite` from 2.9.18 to 5.4.6 Release notes Sourced from vite's releases. [email protected] Please...

dependencies

Hey! Nice plugin! I have a question about ESM. Do you have plans to support it? Right now `requireUp` [expects](https://github.com/cletusw/eslint-plugin-local-rules/blob/master/requireUp.js#L16) `CommonJS` with `require` statement. `ESLint` supports `ESM` already, so more...