@ossy/eslint-config-ossy 1.9.1 → 1.10.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.
Files changed (3) hide show
  1. package/CHANGELOG.md +19 -0
  2. package/README.md +32 -2
  3. package/package.json +2 -2
package/CHANGELOG.md CHANGED
@@ -3,6 +3,25 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## 1.10.1 (2026-03-19)
7
+
8
+ **Note:** Version bump only for package @ossy/eslint-config-ossy
9
+
10
+
11
+
12
+
13
+
14
+ # 1.10.0 (2026-03-18)
15
+
16
+
17
+ ### Features
18
+
19
+ * add optional dependency for Rollup on Linux ([425294f](https://github.com/ossy-se/packages/commit/425294f64f8a5d15716b459851a407a61528461b))
20
+
21
+
22
+
23
+
24
+
6
25
  ## 1.9.1 (2026-03-15)
7
26
 
8
27
  **Note:** Version bump only for package @ossy/eslint-config-ossy
package/README.md CHANGED
@@ -1,3 +1,33 @@
1
- # Ossy ESlint configuration
1
+ # @ossy/eslint-config-ossy
2
2
 
3
- Collection of eslint rules used by Ossy.
3
+ Shared ESLint configuration for Ossy projects.
4
+
5
+ ## Installation
6
+
7
+ ```bash
8
+ npm install --save-dev @ossy/eslint-config-ossy eslint
9
+ ```
10
+
11
+ ## Usage
12
+
13
+ In your `.eslintrc.js` or `eslint.config.js`:
14
+
15
+ ```js
16
+ // .eslintrc.js
17
+ module.exports = {
18
+ extends: ['@ossy/eslint-config-ossy'],
19
+ }
20
+ ```
21
+
22
+ Or with flat config (ESLint 9+):
23
+
24
+ ```js
25
+ // eslint.config.js
26
+ import ossy from '@ossy/eslint-config-ossy'
27
+
28
+ export default [...ossy]
29
+ ```
30
+
31
+ ## License
32
+
33
+ MIT
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ossy/eslint-config-ossy",
3
- "version": "1.9.1",
3
+ "version": "1.10.1",
4
4
  "description": "ESLint config used by Ossy",
5
5
  "main": "index.js",
6
6
  "url": "git://github.com/ossy-se/ossy.git",
@@ -18,5 +18,5 @@
18
18
  "peerDependencies": {
19
19
  "eslint": "^9.39.2"
20
20
  },
21
- "gitHead": "009330a43cf08e0cab806434b5f654401924af95"
21
+ "gitHead": "fa8cbcb5f24811e6844c929d7fa7cd1d2544efa7"
22
22
  }