@sparticuz/eslint-config
Version:
Sparticuz's shareable config for eslint
15 lines (14 loc) • 458 B
JavaScript
import jsxA11yPlugin from "eslint-plugin-jsx-a11y";
import globals from "globals";
import tseslint, {} from "typescript-eslint";
export default tseslint.config({
name: "@sparticuz/eslint-config/jsx-a11y.ts",
...jsxA11yPlugin.flatConfigs.recommended,
languageOptions: {
...jsxA11yPlugin.flatConfigs.recommended.languageOptions,
globals: {
...globals.serviceworker,
...globals.browser,
},
},
});