Update docs to remove standard-format references
See original GitHub issueI recently started using the vim integration and realized a behavior that I’m not sure is correct.
I have vim set up to use standard-format
when I save. Some code that looks like this…
SomeModule.someMethod({ foo }, cb)
It is re-written as…
SomeModule.someMethod({ foo}, cb)
But then I also get a message saying…
Expected consistent spacing (standard/object-curly-even-spacing)
Issue Analytics
- State:
- Created 7 years ago
- Reactions:1
- Comments:11 (7 by maintainers)
Top Results From Across the Web
Add or change sources, citations, and bibliographies
In the document, delete all the citations associated with the source that you want to remove. · On the Document Elements tab, under...
Read more >Add or update a bibliography and citations - Google Support
Open your document in Docs. · Click Tools and then · In the Citations section, make sure the correct format is selected and...
Read more >Managing references: Word's References tool
To change the style of your references from the default 'APA' style click on the 'Style' list and select another.
Read more >Editing a referencing style - EndNote
Editing reference styles · In EndNote, go to the Tools menu. · Go to Output Styles and select Open Style Manager. · Locate...
Read more >Managing Citation Styles - Ex Libris Knowledge Center
Delete Reference Types: To remove a reference type, select the trash can next to it. If you are editing an out-of-the-box style, select...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
This would be an issue with
standard-format
.I believe there are a few open issues regarding this kind of spacing: https://github.com/maxogden/standard-format/issues?utf8=✓&q=spacing
You may want to try the latest version of
standard
and usestandard --fix
instead. It uses eslint’s fix flag which seems to be a bit more consistent (but does not cover as many things).Closing this issue as it should already be covered over at
standard-format
👍@0x00A there’s a bunch of issues with
standard-format
and modern syntax. I suggest perhaps adjusting your vim integration to usestandard --fix
instead.