Skip to content

Commit

Permalink
fix trailing commas
Browse files Browse the repository at this point in the history
  • Loading branch information
sugardon committed May 4, 2021
1 parent 1185b37 commit 44d7cd5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Expand Up @@ -55,9 +55,9 @@ You should also specify settings that will be shared across all the plugin rules
"componentWrapperFunctions": [
// The name of any function used to wrap components, e.g. Mobx `observer` function. If this isn't set, components wrapped by these functions will be skipped.
"observer", // `property`
{"property": "styled"} // `object` is optional
{"property": "styled"}, // `object` is optional
{"property": "observer", "object": "Mobx"},
{"property": "observer", "object": "<pragma>"}, // sets `object` to whatever value `settings.react.pragma` is set to
{"property": "observer", "object": "<pragma>"} // sets `object` to whatever value `settings.react.pragma` is set to
],
"linkComponents": [
// Components used as alternatives to <a> for linking, eg. <Link to={ url } />
Expand Down

0 comments on commit 44d7cd5

Please sign in to comment.