@ossy/eslint-config-ossy 1.10.0 → 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.
package/CHANGELOG.md CHANGED
@@ -3,6 +3,14 @@
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
+
6
14
  # 1.10.0 (2026-03-18)
7
15
 
8
16
 
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.10.0",
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": "3019a8da590435ba6f10d7d861addeba011baf5d"
21
+ "gitHead": "fa8cbcb5f24811e6844c929d7fa7cd1d2544efa7"
22
22
  }