Skip to content

Commit 830cde2

Browse files
committed
BREAKING CHANGE(eslint-config-jest): Change library organization to alma-oss
1 parent 0d54d1e commit 830cde2

3 files changed

Lines changed: 14 additions & 11 deletions

File tree

packages/eslint-config-jest/README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,19 @@
1-
# @lmc-eu/eslint-config-jest
1+
# @alma-oss/eslint-config-jest
22

3-
> LMC’s ESLint config for projects using Jest as test runner
3+
> Alma’s ESLint config for projects using Jest as test runner
44
55
These configuration files are suitable to lint Jest test files.
66

77
## Install
88

99
```bash
10-
npm install @lmc-eu/eslint-config-jest -D
10+
npm install @alma-oss/eslint-config-jest -D
1111
```
1212

1313
or
1414

1515
```bash
16-
yarn add @lmc-eu/eslint-config-jest -D
16+
yarn add @alma-oss/eslint-config-jest -D
1717
```
1818

1919
## Usage
@@ -24,7 +24,7 @@ Create a _eslint.config.js_ file with the following contents:
2424
// eslint.config.js
2525

2626
import { defineConfig } from 'eslint/config';
27-
import jest from '@lmc-eu/eslint-config-jest';
27+
import jest from '@alma-oss/eslint-config-jest';
2828

2929
export default defineConfig([, /* other eslint configs */ ...jest]);
3030
```

packages/eslint-config-jest/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { FlatCompat } from '@eslint/eslintrc';
2-
import globs from '@lmc-eu/eslint-config-base/globs';
2+
import globs from '@alma-oss/eslint-config-base/globs';
33
import jest from 'eslint-plugin-jest';
44
import { fixupPluginRules } from '@eslint/compat';
55

packages/eslint-config-jest/package.json

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
{
2-
"name": "@lmc-eu/eslint-config-jest",
2+
"name": "@alma-oss/eslint-config-jest",
33
"version": "3.0.6",
4-
"description": "LMC's ESlint configuration for projects using Jest as test runner",
4+
"description": "Alma's ESlint configuration for projects using Jest as test runner",
55
"keywords": [
66
"eslint",
77
"config",
8-
"lmc",
8+
"alma",
99
"jest"
1010
],
11-
"author": "Tomáš Litera <tomas.litera@lmc.eu>",
11+
"author": "Tomáš Litera <tomas.litera@almacareer.com>",
1212
"homepage": "https://github.com/lmc-eu/code-quality-tools#readme",
1313
"license": "MIT",
1414
"publishConfig": {
@@ -30,13 +30,16 @@
3030
"url": "https://github.com/lmc-eu/code-quality-tools/issues"
3131
},
3232
"dependencies": {
33+
"@alma-oss/eslint-config-base": "3.1.3",
3334
"@eslint/compat": "^1.3.1",
3435
"@eslint/eslintrc": "^3.3.1",
35-
"@lmc-eu/eslint-config-base": "3.1.3",
3636
"eslint-plugin-jest": "^29.0.1",
3737
"eslint-plugin-jest-formatting": "^3.1.0"
3838
},
3939
"peerDependencies": {
4040
"eslint": "^9.31.0"
41+
},
42+
"devDependencies": {
43+
"eslint": "^9.33.0"
4144
}
4245
}

0 commit comments

Comments
 (0)