1.2.1 • Published 2 years ago

eslint-config-javierscode v1.2.1

Weekly downloads
-
License
GNU
Repository
-
Last release
2 years ago

👀 How to use

  1. Install the dependency

    npm install --save-dev eslint-config-javierscode
  2. Add it to your .eslintrc.json file:

    {
      "extends": [ "eslint-config-javierscode" ]
    }
  3. If you are using TypeScript, extend the TypeScript configuration instead, and point to your tsconfig.json in parserOptions:

     {
     "extends": [
         "eslint-config-javierscode/typescript"
     ],
     "parserOptions": {
         "project": [
         "./tsconfig.json"
         ]
     }
     }