Yongmin Hong
45ac900600
Summary: Update `globals` to `v15.11.0`. Additionally run pnpm `v9.12.1`. Signed-off-by: Yongmin Hong <revi@omglol.email> Test Plan: `git tag`, push the tag, and watch GitHub Actions publishing to `npmjs`. Reviewers: O1 revi & automations, revi Reviewed By: O1 revi & automations, revi Differential Revision: https://issuetracker.revi.xyz/D795 |
||
---|---|---|
.. | ||
types | ||
CHANGELOG.md | ||
eslint.config.js | ||
package.json | ||
README.md |
@revi/eslint-config
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,
];