Yongmin Hong
0f4b7c97e3
Summary: Signed-off-by: Yongmin Hong <revi@omglol.email> npm: use @revi/eslint-config Also change eslint format, and publish `v0.0.2`. Also prepare for eslint-config-wikimedia when they have eslint9 support. Signed-off-by: Yongmin Hong <revi@omglol.email> Test Plan: `npm run eslint`. Reviewers: O1 revi & automations, revi Reviewed By: O1 revi & automations, revi Differential Revision: https://issuetracker.revi.xyz/D332
25 lines
615 B
JavaScript
25 lines
615 B
JavaScript
// @ts-check
|
|
/**
|
|
* @file revi's eslint config preset
|
|
* @see https://eslint.org/docs/latest/use/configure/configuration-files
|
|
* @type {import("eslint").Linter.Config}
|
|
* @copyright Hong Yongmin 2024
|
|
* @license Apache-2.0
|
|
*/
|
|
|
|
// Update README.md when you update the 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,
|
|
];
|