Skip to content

Instantly share code, notes, and snippets.

View fatihkayan20's full-sized avatar

Fatih Kayan fatihkayan20

View GitHub Profile
@fatihkayan20
fatihkayan20 / eslint.config.mjs
Last active December 19, 2024 07:35
Eslint 9
import { fixupPluginRules } from "@eslint/compat";
import pluginJs from "@eslint/js";
import stylistic from "@stylistic/eslint-plugin";
import checkFile from "eslint-plugin-check-file";
import importPlugin from "eslint-plugin-import";
import jest from "eslint-plugin-jest";
import noRelativeImportPathsPlugin from "eslint-plugin-no-relative-import-paths";
import pluginReact from "eslint-plugin-react";
import pluginReactHooks from "eslint-plugin-react-hooks";
import testingLibrary from "eslint-plugin-testing-library";
@fatihkayan20
fatihkayan20 / eslintrc
Last active October 28, 2024 08:30
Expo eslint configuration
// https://docs.expo.dev/guides/using-eslint/
module.exports = {
extends: "expo",
plugins: [
"react-hooks",
"@typescript-eslint",
"check-file",
"@stylistic/js",
"no-relative-import-paths",
],