nerdyman/react-image-turntable

View on GitHub
.eslintrc

Summary

Maintainability
Test Coverage
{
  "root": true,
  "parser": "@typescript-eslint/parser",
  "parserOptions": {
    "sourceType": "module",
    "ecmaFeatures": {
      "jsx": true
    }
  },
  "plugins": ["@typescript-eslint", "react"],
  "extends": [
    "eslint:recommended",
    "plugin:react/recommended",
    "plugin:react/jsx-runtime",
    "plugin:react-hooks/recommended",
    "plugin:@typescript-eslint/eslint-recommended",
    "plugin:@typescript-eslint/recommended"
  ],
  "env": {
    "browser": true,
    "es6": true
  },
  "settings": {
    "react": { "version": "detect" }
  },
  "rules": {
    "linebreak-style": ["error", "unix"],
    "lines-around-comment": 0,
    "no-confusing-arrow": 0,
    "no-alert": "error",
    "no-console": "error",
    "no-debugger": "error",
    "no-shadow": "warn",

    "react/jsx-indent": 0,
    "react/jsx-indent-props": 0,
    "react/prop-types": 0,

    "@typescript-eslint/consistent-type-imports": "error",
    "@typescript-eslint/no-unused-vars": [
      "warn",
      {
        "args": "all",
        // Although this repo uses React 18 the library supports React 16+ so we still need to import React.
        "argsIgnorePattern": "^(_|React)",
        "varsIgnorePattern": "^(_|React)"
      }
    ],
    "@typescript-eslint/no-use-before-define": "warn"
  }
}