Skip to content

Instantly share code, notes, and snippets.

@ff6347
Last active February 13, 2019 14:37
Show Gist options
  • Select an option

  • Save ff6347/25b78307612b2dc091d3faea71c35bbe to your computer and use it in GitHub Desktop.

Select an option

Save ff6347/25b78307612b2dc091d3faea71c35bbe to your computer and use it in GitHub Desktop.
{
"extends": [
"airbnb-base",
"plugin:@typescript-eslint/recommended",
"plugin:import/recommended",
"plugin:import/typescript",
"plugin:prettier/recommended"
],
"rules": {
"quotes": [
"error",
"single",
{ "avoidEscape": true, "allowTemplateLiterals": false }
],
"@typescript-eslint/indent": ["error", 2]
},
"settings": {
"import/parsers": {
"@typescript-eslint/parser": [
".ts",
".tsx"
]
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment