Skip to content

Releases: synacor/eslint-config-synacor

3.0.5 Support eslint 6

13 Sep 19:13
Compare
Choose a tag to compare

3.0.4 add react setting of version 15 to support preact 8 and down

13 Sep 19:14
Compare
Choose a tag to compare

3.0.3 add legacyDecorators: true setting to parsing options

30 Aug 21:01
Compare
Choose a tag to compare

This makes it so that the legacy decorator syntax with export doesn't throw an error with the new babel-eslint version, such as:

@myDecorator
export class MyClass

See: babel/babel-eslint#662

3.0.2 Upgrade Dependencies and support eslint@5 in addition to eslint@4

30 Aug 20:25
Compare
Choose a tag to compare

Remove eslint-config-compat

09 Feb 22:10
Compare
Choose a tag to compare

Removed the eslint-config-compat package. It relied on caniuse-db which uses a CC-BY-4.0 Attribution license which is not compatible with our licensing preferences. In addition, eslint-config-compat was not catching many lint errors for us, so it is one less dependency for the project.

2.0.4 - Add promises to the list of polyfills

02 Jan 18:09
Compare
Choose a tag to compare

Add promises to the list of polyfills, since Synacor always polyfills promises in its code bases. This prevents eslint-plugin-compat from throwing errors about IE not supporting Promises.

2.0.3 Update dependencies

02 Jan 18:07
Compare
Choose a tag to compare

Update all dependencies.

Use ^ ranges instead of >= ranges for dependencies

05 Oct 15:47
Compare
Choose a tag to compare

[email protected] broke eslint-config-synacor upon its release because we were using >= range versioning for dependencies. This version changes to a safer major version ^ range versioning for dependencies.

Use ^ ranges instead of >= ranges for dependencies

05 Oct 15:51
Compare
Choose a tag to compare

[email protected] broke eslint-config-synacor upon its release because we were using >= range versioning for dependencies. This version changes to a safer major version ^ range versioning for dependencies.

New rule `react/display-name`

18 Sep 17:55
Compare
Choose a tag to compare

Add new rule react/display-name to ensure debugging tools can properly identify components