sandbox/npm/eslint-config
Yongmin Hong 43241f68f2
CI(deps/npm): Bump @revi/eslint-config to v0.0.18
Summary:
External version of D850.

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

Test Plan: `pnpm install`.

Reviewers: O1 revi & automations, revi

Reviewed By: O1 revi & automations, revi

Differential Revision: https://issuetracker.revi.xyz/D851
2024-11-27 11:52:07 +09:00
..
types npm/eslint-config: Bump version 2024-10-23 16:42:41 +09:00
CHANGELOG.md CI(deps/npm): Bump @revi/eslint-config to v0.0.18 2024-11-27 11:52:07 +09:00
eslint.config.js npm/eslint-config: Bump version 2024-10-23 16:42:41 +09:00
package.json CI(deps/npm): Bump @revi/eslint-config to v0.0.18 2024-11-27 11:52:07 +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,
];