Skip to content

Instantly share code, notes, and snippets.

@agcty
Last active November 22, 2020 17:08
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save agcty/b364a726564e7dd80a41066316d8e988 to your computer and use it in GitHub Desktop.
Save agcty/b364a726564e7dd80a41066316d8e988 to your computer and use it in GitHub Desktop.
Eslintrc for auto imports next.js
module.exports = {
env: {
browser: true,
node: true,
es2020: true,
},
parser: "@typescript-eslint/parser",
parserOptions: {
ecmaVersion: 2020,
sourceType: "module",
ecmaFeatures: {
jsx: true,
},
},
plugins: ["@typescript-eslint", "react", "prettier"],
extends: [
"airbnb",
"airbnb/hooks",
"plugin:@typescript-eslint/recommended",
"plugin:react/recommended",
"plugin:import/errors",
"plugin:import/warnings",
"plugin:import/typescript",
"prettier",
"prettier/@typescript-eslint",
"prettier/react",
],
rules: {
"react/jsx-filename-extension": [1, { extensions: [".ts", ".tsx"] }],
"import/extensions": "off",
"react/prop-types": "off",
"jsx-a11y/anchor-is-valid": "off",
"react/jsx-props-no-spreading": ["error", { custom: "ignore" }],
"prettier/prettier": "error",
"react/no-unescaped-entities": "off",
"import/no-cycle": [0, { ignoreExternal: true }],
"prefer-const": "off",
// needed because of https://github.com/typescript-eslint/typescript-eslint/blob/master/packages/eslint-plugin/docs/rules/no-use-before-define.md#how-to-use & https://stackoverflow.com/questions/63818415/react-was-used-before-it-was-defined
"no-use-before-define": "off",
"@typescript-eslint/no-use-before-define": [
"error",
{ functions: false, classes: false, variables: true },
],
},
settings: {
"import/resolver": {
"babel-module": {
extensions: [".js", ".jsx", ".ts", ".tsx"],
},
node: {
extensions: [".js", ".jsx", ".ts", ".tsx"],
paths: ["src"],
},
},
},
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment