mirror of
https://github.com/outbackdingo/firezone.git
synced 2026-01-27 10:18:54 +00:00
15 lines
319 B
JavaScript
15 lines
319 B
JavaScript
// @ts-check
|
|
|
|
import eslint from "@eslint/js";
|
|
import tseslint from "typescript-eslint";
|
|
import reactplugin from "eslint-plugin-react";
|
|
|
|
export default tseslint.config({
|
|
ignores: ["dist/**"],
|
|
extends: [
|
|
eslint.configs.recommended,
|
|
tseslint.configs.strict,
|
|
reactplugin.configs.flat.recommended,
|
|
],
|
|
});
|