sandbox/npm/eslint-config
dependabot[bot] c4b65cd9ef
build(deps): bump prettier from 3.3.2 to 3.3.3
Bumps [prettier](https://github.com/prettier/prettier) from 3.3.2 to 3.3.3.
- [Release notes](https://github.com/prettier/prettier/releases)
- [Changelog](https://github.com/prettier/prettier/blob/main/CHANGELOG.md)
- [Commits](https://github.com/prettier/prettier/compare/3.3.2...3.3.3)

---
updated-dependencies:
- dependency-name: prettier
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
2024-07-15 01:10:12 +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 prettier from 3.3.2 to 3.3.3 2024-07-15 01:10:12 +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,
];