Skip to content

Releases: portsoc/eslint-config-portsoc

stable

29 Jan 16:17
Compare
Choose a tag to compare
v1.0.0

1.0.0

add generator-star-spacing; fix deps

06 Jun 12:57
Compare
Choose a tag to compare

ban var (and more new rules)

07 Apr 10:46
Compare
Choose a tag to compare
  1. no-var: obvious
  2. require-await: we usually don't want to have an async function that does not await
    • Sadly, we cannot catch with eslint where we call an async function and we don't await, I'd really like that, too.
  3. (updated) no-unused-vars: we usually don't want unused parameters (semistandard doesn't seem to catch that)
  4. (updated) no-restricted-syntax SequenceExpression: we don't usually use the comma operator and sequence expressions; inexperienced programmers coming from other languages can use it by mistake, thinking it does something else

quotes and class member spacing

27 Mar 11:33
Compare
Choose a tag to compare

adds the following rules #7 :

    'quotes': ['error', 'single', 'avoid-escape'],
    'lines-between-class-members': ['error', 'always', {
      exceptAfterSingleLine: true,
    }],

add root: true

20 Mar 16:47
Compare
Choose a tag to compare
  • add root: true in README in the default config (because it's a good idea for inexperienced users so eslint configs don't get mixed up)
  • testing github action workflow name change

add tests

20 Mar 10:55
Compare
Choose a tag to compare
  • added automated tests and CI
  • added quote-props: consistent-as-needed

0.3.0

13 Mar 07:17
Compare
Choose a tag to compare
0.3.0 Pre-release
Pre-release
  • Improved README
  • Auto-publish using action+workflow test #2

0.2.0

12 Mar 22:41
Compare
Choose a tag to compare
0.2.0 Pre-release
Pre-release

Package and release numbers aligned.

0.0.2

12 Mar 22:34
94dc33a
Compare
Choose a tag to compare
0.0.2 Pre-release
Pre-release

As 0.0.1 but globals removed.