sandbox/npm/eslint-config
Yongmin Hong 61f09cfcd0
pkg/npm(eslint-config): Bump version to v0.0.21
Summary:
External version of D888.

Also
- bump pnpm and renovate version.
- bump node version to v22.

Signed-off-by: Yongmin Hong <revi@omglol.email>

Test Plan: Land and tag & release `@revi/eslint-config`.

Reviewers: O1 revi & automations, revi

Reviewed By: O1 revi & automations, revi

Differential Revision: https://issuetracker.revi.xyz/D889
2025-01-20 02:44:04 +09:00
..
types npm/eslint-config: Bump version 2024-10-23 16:42:41 +09:00
CHANGELOG.md pkg/npm(eslint-config): Bump version to v0.0.21 2025-01-20 02:44:04 +09:00
eslint.config.js npm/eslint-config: Bump version 2024-10-23 16:42:41 +09:00
package.json pkg/npm(eslint-config): Bump version to v0.0.21 2025-01-20 02:44:04 +09:00
README.md npm/eslint-config: Bump version 2024-10-23 16:42:41 +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,
];