This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import js from "@eslint/js"; | |
| import importPlugin from "eslint-plugin-import"; | |
| import react from "eslint-plugin-react"; | |
| import reactHooks from "eslint-plugin-react-hooks"; | |
| import reactRefresh from "eslint-plugin-react-refresh"; | |
| import globals from "globals"; | |
| import tseslint from "typescript-eslint"; | |
| export default tseslint.config( | |
| { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /** @type {import("eslint").Linter.Config} */ | |
| const config = { | |
| parser: "@typescript-eslint/parser", | |
| parserOptions: { | |
| project: true, | |
| }, | |
| plugins: ["@typescript-eslint", "react", "prettier", "import"], | |
| extends: [ | |
| "next/core-web-vitals", | |
| "plugin:@typescript-eslint/recommended-type-checked", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "$help": "https://aka.ms/terminal-documentation", | |
| "$schema": "https://aka.ms/terminal-profiles-schema", | |
| "actions": | |
| [ | |
| { | |
| "command": | |
| { | |
| "action": "copy", | |
| "singleLine": false |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?xml version="1.0"?> | |
| <!DOCTYPE module PUBLIC | |
| "-//Puppy Crawl//DTD Check Configuration 1.3//EN" | |
| "http://www.puppycrawl.com/dtds/configuration_1_3.dtd"> | |
| <module name = "Checker"> | |
| <property name="charset" value="UTF-8"/> | |
| <!-- do not change severity to 'error', as that will hide errors caused by exceptions --> | |
| <property name="severity" value="warning"/> |