sahilrajput03

Learn Eslint

Quick Links:

Install eslint in JSX for no-multiple-empty-lines

npm install eslint-plugin-react --save-dev

In your eslint config file you can do:

module.exports = {
  // ... other ESLint settings
  rules: {
    // Never have multiple empty lines
    'no-multiple-empty-lines': [
      'error',
      {
        max: 1, // Set the maximum number of empty lines to 1 (or any other value you prefer)
        maxBOF: 1, // Set the maximum number of empty lines at the beginning of the file
        maxEOF: 1, // Set the maximum number of empty lines at the end of the file
      },
    ],

    // Always have empty line in the end of file
    'eol-last': ["error", "always"]
  },
};

This is really great playground feature to test eslint rules of typescript

Custom eslint plugin

// file: ./utils/logger-utils.ts
// eslint-disable-next-line global-require, @typescript-eslint/no-var-requires
export const jestLogger = require('console').log;
// file: ./eslint-custom-plugins/eslint-plugin-noJestLogger.js
/**
 * Installing this to any project requires you to run:
 * npm i --dev eslint-plugin-noJestLogger@file:./eslint-custom-plugins/eslint-plugin-noJestLogger.js
 *
 * In your .eslint.js file, you can add this plugin like this:
 *
 *   plugins: [
 *     "@typescript-eslint/eslint-plugin",
 *     'noJestLogger',
 *   ],
 *
 *
 * Now, you can define, warning level for it like this:
 *
 *   rules: {
 *     /* Other rules here...*
 *     "noJestLogger/noJestLogger": "warn",
 *   }
 */

const functionName = 'jestLogger';

module.exports = {
  rules: {
    noJestLogger: {
      create(context) {
        return {
          CallExpression(node) {
            if (node.callee.name === functionName) {
              context.report({
                node,
                message: 'Unexpected jestLogger statement',
              });
            }
          },
        };
      },
    },
  },
};

Disable eslint temporarily for a file (slasher tested)

// ! Please remove below line before making PR
/* eslint-disable */

With Piyush - Setup Eslint in a backend project

  1. Install dependencies -
npm i -D @typescript-eslint/parser eslint-plugin-jest @typescript-eslint/eslint-plugin eslint eslint-plugin-import eslint-plugin-n eslint-plugin-promise eslint-config-standard-with-typescript@33.0.0 ts-jest @types/jest jest
  1. Add a eslint config file .eslintrc.js with following contents -
module.exports = {
  parser: "@typescript-eslint/parser",
  parserOptions: {
    project: "tsconfig.json",
    tsconfigRootDir: __dirname,
    sourceType: "module",
  },
  plugins: ["@typescript-eslint/eslint-plugin"],
  env: {
    sourceType: 'module',
    project: 'tsconfig.json',
    tsconfigRootDir: __dirname,
  },
  extends: [
    'standard-with-typescript',
    'plugin:@typescript-eslint/recommended',
    'plugin:@typescript-eslint/recommended-requiring-type-checking',
    'plugin:jest/recommended',
    'plugin:jest/style',
  ],
  env: {
    browser: true,
    es2021: true,
  },
  ignorePatterns: [".eslintrc.js"],
  rules: {
    'no-unused-vars': 'warn',
    'comma-dangle': 'off',
    'jest/expect-expect': [
      'error',
      { assertFunctionNames: ['expect', 'request.**.expect'] },
    ],
    'no-console': 'warn',
    '@typescript-eslint/no-extra-semi': 'warn',
    '@typescript-eslint/semi': 'warn',
    '@typescript-eslint/no-explicit-any': 'off',
    '@typescript-eslint/no-unsafe-assignment': 'off',
    '@typescript-eslint/comma-dangle': 'off',
    '@typescript-eslint/space-before-function-paren': 'off',
    '@typescript-eslint/no-unsafe-argument': 'off',
    '@typescript-eslint/no-unsafe-member-access': 'off',
    '@typescript-eslint/no-unsafe-call': 'off',
    '@typescript-eslint/indent': 'off',
    '@typescript-eslint/consistent-type-imports': 'off',
    '@typescript-eslint/require-await': 'off',
  },
  overrides: [],
}

Autofix and Add missing imports on file save

"[javascript]": {
  "editor.formatOnSave": true,
  "editor.codeActionsOnSave": {
    "source.fixAll.eslint": true,
    "source.addMissingImports": true
  },
  "editor.defaultFormatter": "vscode.typescript-language-features"
},
"[javascriptreact]": {
  "editor.formatOnSave": true,
  "editor.codeActionsOnSave": {
    "source.fixAll.eslint": true,
    "source.addMissingImports": true
  },
  "editor.defaultFormatter": "vscode.typescript-language-features"
},
"[typescript]": {
  "editor.formatOnSave": true,
  "editor.codeActionsOnSave": {
    "source.fixAll.eslint": true,
    "source.addMissingImports": true
  },
  "editor.defaultFormatter": "vscode.typescript-language-features"
},
"[typescriptreact]": {
  "editor.formatOnSave": true,
  "editor.codeActionsOnSave": {
    "source.fixAll.eslint": true,
    "source.addMissingImports": true
  },
  "editor.defaultFormatter": "vscode.typescript-language-features"
},

image

Source: Click here

image