sandbox/npm/eslint-config
dependabot[bot] 695413d335
build(deps): bump eslint from 9.9.1 to 9.10.0
Bumps [eslint](https://github.com/eslint/eslint) from 9.9.1 to 9.10.0.
- [Release notes](https://github.com/eslint/eslint/releases)
- [Changelog](https://github.com/eslint/eslint/blob/main/CHANGELOG.md)
- [Commits](https://github.com/eslint/eslint/compare/v9.9.1...v9.10.0)

---
updated-dependencies:
- dependency-name: eslint
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
2024-09-09 02:06:16 +00:00
..
types npm(eslint-config): move peerDep to dep 2024-06-27 20:12:15 +09:00
CHANGELOG.md npm: update (eslint|prettier)-config packages 2024-08-01 18:59:12 +09:00
eslint.config.js CI: add eslint 2024-06-16 15:50:44 +09:00
package.json build(deps): bump eslint from 9.9.1 to 9.10.0 2024-09-09 02:06:16 +00:00
README.md npm(README): add shields.io badges 2024-06-17 12:46:50 +09:00

@revi/eslint-config

NPM Version GitHub License

This is @revi's personal eslint config.

Config

import globals from 'globals';
import pluginJs from '@eslint/js';
import eslintConfigPrettier from 'eslint-config-prettier';

export default [
  pluginJs.configs.recommended,
  {
    rules: {
      'no-undef': 'warn',
      'no-unused-vars': 'warn',
    },
  },
  {languageOptions: {globals: globals.browser}},
  eslintConfigPrettier,
];