npm install --save-dev eslint eslint-plugin-githubAdd github to your list of plugins in your ESLint config.
JSON ESLint config example:
{
"plugins": ["github"]
}Extend the configs you wish to use.
JSON ESLint config example:
{
"extends": ["plugin:github/recommended"]
}The available configs are:
internal- Rules useful for github applications.
browser- Useful rules when shipping your app to the browser.
react- Recommended rules for React applications.
recommended- Recommended rules for every application.
typescript- Useful rules when writing TypeScript.
Note: This is experimental and subject to change.
The react config includes rules which target specific HTML elements. You may provide a mapping of custom components to an HTML element in your eslintrc configuration to increase linter coverage.
By default, these eslint rules will check the "as" prop for underlying element changes. If your repo uses a different prop name for polymorphic components provide the prop name in your eslintrc configuration under polymorphicPropName.
{
"settings": {
"github": {
"polymorphicPropName": "asChild",
"components": {
"Box": "p",
"Link": "a"
}
}
}
}This config will be interpreted in the following way:
- All
<Box>elements will be treated as apelement type. <Link>without a definedasprop will be treated as aa.<Link as='button'>will be treated as abuttonelement type.
💼 Configurations enabled in.
🔍 Set in the browser configuration.
🔐 Set in the internal configuration.
⚛️ Set in the react configuration.
✅ Set in the recommended configuration.
🔧 Automatically fixable by the --fix CLI option.
❌ Deprecated.
