Skip to content

Instantly share code, notes, and snippets.

@nkpgardose
Created December 12, 2021 10:33
Show Gist options
  • Save nkpgardose/020559b6d22060cad0e2da66413f454d to your computer and use it in GitHub Desktop.
Save nkpgardose/020559b6d22060cad0e2da66413f454d to your computer and use it in GitHub Desktop.
{
"extends": [
"next/core-web-vitals",
"plugin:jsx-a11y/recommended",
"plugin:react/recommended",
"prettier"
],
"plugins": [ "prettier", "jsx-a11y" ],
"rules": {
"prettier/prettier": [
"error",
{
"useTabs": true,
"tabWidth": 2,
"singleQuote": true,
"trailingCommas": "es5",
"semi": false
}
],
"id-length": [
"error",
{
"min": 3,
"properties": "never",
"exceptions": [
"_",
"id"
]
}
],
"no-unused-vars": [
"error",
{
"vars": "all",
"args": "after-used",
"argsIgnorePattern": "^_",
"ignoreRestSiblings": true
}
],
"lines-between-class-members": ["error", "always"]
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment