Skip to content

Instantly share code, notes, and snippets.

@FeMaffezzolli
Forked from diego3g/.eslintrc.js
Created March 6, 2020 00:09
Show Gist options
  • Save FeMaffezzolli/b30f11d1dc919e70c322e52dc96ac8b1 to your computer and use it in GitHub Desktop.
Save FeMaffezzolli/b30f11d1dc919e70c322e52dc96ac8b1 to your computer and use it in GitHub Desktop.
const { resolve } = require('path');
module.exports = {
env: {
browser: true,
es6: true,
jest: true,
},
globals: {
Atomics: 'readonly',
SharedArrayBuffer: 'readonly',
},
parserOptions: {
ecmaVersion: 2018,
ecmaFeatures: {
jsx: true,
tsx: true,
},
sourceType: 'module',
project: resolve(__dirname, 'tsconfig.json'),
},
parser: '@typescript-eslint/parser',
plugins: [
'@typescript-eslint',
'import',
'import-helpers',
'react-hooks',
'jest',
'prettier',
],
extends: [
'airbnb',
'plugin:@typescript-eslint/recommended',
'prettier/@typescript-eslint',
'plugin:prettier/recommended',
],
rules: {
'prettier/prettier': 'error',
'class-methods-use-this': 'off',
'@typescript-eslint/no-explicit-any': 'off',
'@typescript-eslint/interface-name-prefix': 'off',
'@typescript-eslint/no-var-requires': 'off',
'@typescript-eslint/camelcase': 'off',
'@typescript-eslint/explicit-function-return-type': 'off',
'react/jsx-filename-extension': [
'warn',
{
extensions: ['.jsx', '.tsx'],
},
],
'import-helpers/order-imports': [
'warn',
{
'newlines-between': 'always',
groups: [
['/^react/'],
['builtin', 'external', 'internal'],
'/^@/',
['parent', 'sibling', 'index'],
],
alphabetize: { order: 'asc', ignoreCase: true },
},
],
'import/no-dynamic-require': 'off',
'no-param-reassign': 'off',
'no-unused-expressions': 'off',
'no-underscore-dangle': 'off',
'react/prop-types': 'off',
'jsx-a11y/label-has-for': 'off',
'import/prefer-default-export': 'off',
'react-hooks/rules-of-hooks': 'error',
'react-hooks/exhaustive-deps': 'warn',
'import/no-extraneous-dependencies': ['error', { devDependencies: true }],
'import/extensions': [
'error',
'ignorePackages',
{
ts: 'never',
tsx: 'never',
},
],
},
settings: {
'import/extensions': ['.js', '.jsx', '.ts', '.tsx'],
'import/parsers': {
'@typescript-eslint/parser': ['.ts', '.tsx'],
},
'import/resolver': {
typescript: {},
},
},
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment