sandbox/npm/eslint-config
dependabot[bot] e35719b5cc
build(deps): bump @eslint/js from 9.6.0 to 9.7.0
Bumps [@eslint/js](https://github.com/eslint/eslint/tree/HEAD/packages/js) from 9.6.0 to 9.7.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/commits/v9.7.0/packages/js)

---
updated-dependencies:
- dependency-name: "@eslint/js"
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
2024-07-15 01:10:58 +00:00
..
types npm(eslint-config): move peerDep to dep 2024-06-27 20:12:15 +09:00
CHANGELOG.md npm(eslint-config): bump 0.0.7 2024-07-06 13:51:39 +09:00
eslint.config.js CI: add eslint 2024-06-16 15:50:44 +09:00
package.json build(deps): bump @eslint/js from 9.6.0 to 9.7.0 2024-07-15 01:10:58 +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,
];