Skip to content

Releases: ovos/coding-standard

v1.5.0

19 Apr 07:48
Compare
Choose a tag to compare

Ensure file names are also linted and adhere to standards.

v1.4.2

16 Jun 19:47
Compare
Choose a tag to compare

restore prettier's arrowParens to the default value, which is "always" in prettier v2.0+

v1.4.1

17 Apr 09:26
Compare
Choose a tag to compare
  • disable ter-arrow-parens: since we're using TypeScript and typing a function arguments requires parens, it would be more streamlined to allow parens usage.

v1.4.0

15 Apr 16:05
Compare
Choose a tag to compare

v1.3.2

19 Dec 18:26
Compare
Choose a tag to compare

ter-prefer-arrow-callback - added allowNamedFunctions: true, suits react's functional components better

v1.3.1

13 Sep 09:11
Compare
Choose a tag to compare

adjusted group names for easier read in lint warnings

v1.3.0

11 Sep 14:31
Compare
Choose a tag to compare
  • [enhancement] add ordered-imports rule #3
  • [enhancement] update dependencies, disable jsx-wrap-multiline #2

v1.2.1

05 Mar 12:53
c4caf2d
Compare
Choose a tag to compare

capitalized function names

We now allow capitalized function names (for React components):

function MyButton({ value, onChange }) {
  return <button value={value} onClick={onClick}>hello!</button>;
}

🎉