@josundt/eslint-config

5.7.2 • Public • Published

@josundt/eslint-config

ESLint ruleset including required ESLint plugins for josundt TypeScript projects

Usage

  1. Make sure you have installed and configured @josundt/prettier-config first

  2. Install this package

    npm install @josundt/eslint-config
  3. Create an eslint.config.js file in the root directory of your project with approximately the following content:

    import tsBrowserConfig from "@josundt/eslint-config/ts-browser";
    import tsJestBrowserConfig from "@josundt/eslint-config/ts-jest-browser";
    
    // When the project has JEST tests
    const config = [
        {
            ...tsBrowserConfig,
            files: ["src/**/*.ts"]
        },
        {
            ...tsJestBrowserConfig,
            files: ["test/**/?(*.)+(spec).ts?(x)"]
        }
    ];
    
    // Otherwise
    const config = { 
        ...tsBrowserConfig,  
        files: ["src/**/*.ts"]
    };
    
    export default config;

    All configurations:

    • ["@josundt/eslint-config/ts-browser"] (for browser environment code).
    • ["@josundt/eslint-config/ts-node"] (for node environment code).
    • ["@josundt/eslint-config/ts-jest-browser"] (for Jest tests for browser environment code).
    • ["@josundt/eslint-config/ts-jest-node"] (for Jest tests for node environment code).
  4. Add lint:ts script to your project's package.json file:

    {
        // ...
        "scripts": {
            // ...
            "lint:ts": "eslint src test --format visualstudio"
            // ...
        }
        // ...
    }
  5. Test the script:

    npm run lint:ts
  6. Task in Visual Studio Code:

    • Add the following to .vscode/tasks.json:
    {
      //...
      "tasks": [
        //...
        {
          "label": "lint:ts",
          "type": "shell",
          "command": "npx",
          "args": ["eslint", "src", "test", "-f", "stylish"],
          "group": "build",
          "problemMatcher": "$eslint-stylish"
        },
        //...
      ]
      //...
    }
  7. Live Code Analysis in Visual Studio Code:

    • Install extension for VSCode: ESLint (dbaeumer.vscode-eslint)

Readme

Keywords

Package Sidebar

Install

npm i @josundt/eslint-config

Weekly Downloads

3

Version

5.7.2

License

ISC

Unpacked Size

47.2 kB

Total Files

22

Last publish

Collaborators

  • josundt