@unitedstatespowersquadrons/eslint-config
v1.0.8
Published
Shared eslint configuration
Downloads
170
Readme
USPS Shared Eslint Config
To use the shared config, install the npm package:
yarn add --dev @unitedstatespowersquadrons/eslint-configThen create the config file ./eslint.config.mjs:
import tseslint from "typescript-eslint";
import { eslintConfig } from "@unitedstatespowersquadrons/eslint-config"
export default tseslint.config(
{
files: ["**/*.js", "**/*.ts", "**/*.tsx"],
extends: [eslintConfig],
},
);