Skip to content
This repository was archived by the owner on May 2, 2020. It is now read-only.

Latest commit

 

History

History
25 lines (18 loc) · 571 Bytes

eslintrcFile.md

File metadata and controls

25 lines (18 loc) · 571 Bytes

Configure .eslintrc file

This page is part of the App Framework Documentation


The .eslintrc file will be updated automatically.

You can configure it in the eslint object in the app/config.json file.

Example:

"eslint": {
  "extends": "airbnb",
  "rules": {
    "semi": [
      "error",
      "never"
    ]
  }
}

Currently, airbnb and standard are available to extend - if you wish to extend another shared configuration, please ask for it in our issue list.