@coko/lint 2.0.0 → 2.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -2,6 +2,13 @@
2
2
 
3
3
  All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
4
4
 
5
+ ### [2.0.1](https://gitlab.coko.foundation/cokoapps/lint/compare/v2.0.0...v2.0.1) (2023-02-23)
6
+
7
+
8
+ ### Bug Fixes
9
+
10
+ * **eslint:** extend ESlint rules to files with the .jsx extension ([0bc0104](https://gitlab.coko.foundation/cokoapps/lint/commit/0bc01041bf366b757bd3aa06a279c74346bb42cf))
11
+
5
12
  ## [2.0.0](https://gitlab.coko.foundation/cokoapps/lint/compare/v1.4.0...v2.0.0) (2022-03-21)
6
13
 
7
14
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@coko/lint",
3
- "version": "2.0.0",
3
+ "version": "2.0.1",
4
4
  "description": "Linter configurations and dependencies for coko's projects",
5
5
  "keywords": [
6
6
  "lint",
package/src/eslint.js CHANGED
@@ -6,6 +6,11 @@ module.exports = {
6
6
  presets: ['@babel/preset-react'],
7
7
  },
8
8
  },
9
+ overrides: [
10
+ {
11
+ files: ['*.jsx'],
12
+ },
13
+ ],
9
14
  env: {
10
15
  browser: true,
11
16
  es6: true,