diff --git a/.changeset/little-zebras-pay.md b/.changeset/little-zebras-pay.md
deleted file mode 100644
index b8179e9..0000000
--- a/.changeset/little-zebras-pay.md
+++ /dev/null
@@ -1,5 +0,0 @@
----
-'steiger': minor
----
-
-Add documentation about the new config structure
diff --git a/CONFIG_EXAMPLES.md b/CONFIG_EXAMPLES.md
deleted file mode 100644
index 0186b89..0000000
--- a/CONFIG_EXAMPLES.md
+++ /dev/null
@@ -1,118 +0,0 @@
-# Examples
-
-## Glob matching
-
-All globs are matched only against files, folder severities are computed based on the files inside them. The formula is simple: the folder severity is the highest severity of files inside it (from highest to lowest: error, warn, off).
-
-**Glob examples**:
-
-- `./src/shared/**` - matches all files in the `shared` folder and its subfolders
-- `./src/shared/*` - matches all files that are direct children of the `shared` folder
-- `./src/shared` - based on the fact that globs are matched against files, this one matches only `shared` file (without an extension) inside the `src` folder
-- `**/__mocks__/**` - matches all files in all `__mocks__` folders throughout the project
-- `**/*.{test,spec}.{ts,tsx}` - matches all test files in the project
-
-## Example 1. Default case
-
-```javascript
-// ./steiger.config.ts
-import fsd from '@feature-sliced/steiger-plugin'
-import { defineConfig } from 'steiger'
-
-export default defineConfig([...fsd.configs.recommended])
-```
-
-## Example 2. FSD with all rules enabled by default, but excluding a couple of folders
-
-```javascript
-import fsd from '@feature-sliced/steiger-plugin'
-import { defineConfig } from 'steiger'
-
-export default defineConfig([
- ...fsd.configs.recommended,
- {
- ignores: ['**/__mocks__/**'],
- },
-])
-```
-
-## Example 3. FSD without certain rules
-
-```javascript
-import fsd from '@feature-sliced/steiger-plugin'
-import { defineConfig } from 'steiger'
-
-export default defineConfig([
- ...fsd.configs.recommended,
- {
- rules: {
- 'fsd/no-processes': 'off',
- 'fsd/no-public-api-sidestep': 'warn',
- },
- },
- {
- files: ['./src/shared/**'],
- rules: {
- 'fsd/public-api': 'off',
- },
- },
-])
-```
-
-## Example 4. Disabling a rule for a specific folder
-
-```javascript
-import fsd from '@feature-sliced/steiger-plugin'
-import { defineConfig } from 'steiger'
-
-export default defineConfig([
- ...fsd.configs.recommended,
- {
- files: ['./src/shared/**'],
- rules: {
- 'fsd/no-public-api': 'off',
- },
- },
-])
-```
-
-## Example 5. Using ignores along with files
-
-```javascript
-import fsd from '@feature-sliced/steiger-plugin'
-import { defineConfig } from 'steiger'
-
-export default defineConfig([
- ...fsd.configs.recommended,
- {
- files: ['./src/shared/**'],
- ignores: ['./src/shared/lib/**', './src/shared/ui/**'],
- rules: {
- 'fsd/no-public-api': 'off', // Disable the rule for the shared folder, but not for the lib and ui folders
- },
- },
-])
-```
-
-## Example 6. Setting rule options
-
-```javascript
-import fsd from '@feature-sliced/steiger-plugin'
-import { defineConfig } from 'steiger'
-
-export default defineConfig([
- ...fsd.configs.recommended,
- {
- rules: {
- 'fsd/no-public-api': ['warn', { someOptions: true }],
- },
- },
- {
- files: ['./src/shared/**'],
- rules: {
- 'fsd/no-public-api': 'error',
- // 'fsd/no-public-api': ['error', { someOptions: false }], // Would throw an error as you can't override the options
- },
- },
-])
-```
diff --git a/MIGRATION_GUIDE.md b/MIGRATION_GUIDE.md
deleted file mode 100644
index 56334ae..0000000
--- a/MIGRATION_GUIDE.md
+++ /dev/null
@@ -1,89 +0,0 @@
-# Migration guide
-
-## From 0.4.0 to 0.5.0
-
-**Step 1**: First of all you need to make sure you upgraded Steiger package to version 0.5.0 or higher.
-
-**Step 2**: You need to install `@feature-sliced/steiger-plugin` package (that contains all FSD rules to run checks in your project). Run one of the following commands based on the package manager you use.
-
-**pnpm**:
-
-```shell
-pnpm add -D @feature-sliced/steiger-plugin
-```
-
-**yarn**:
-
-```shell
-yarn add -D @feature-sliced/steiger-plugin
-```
-
-**npm**:
-
-```shell
-npm i -D @feature-sliced/steiger-plugin
-```
-
-**Step 3**: The final step. You need to bring your `steiger.config.js` file to the new configuration format. You can do that automatically by running one of the following commands. (Alter the command before running if your config file has an extension different from `.js`)
-
-Here is an example of the transformation that will be applied to your config:
-
-
-Before |
-After |
-
-
-```ts
-// steiger.config.ts
-import { defineConfig } from 'steiger'
-
-export default defineConfig({
- rules: {
- 'public-api': 'off',
- 'ambiguous-slice-names': 'off',
- 'no-processes': 'off',
- },
-})
-```
-
- |
-
-```ts
-// steiger.config.ts
-import { defineConfig } from 'steiger'
-import fsd from '@feature-sliced/steiger-plugin'
-
-export default defineConfig([
- ...fsd.configs.recommended,
- {
- rules: {
- 'fsd/public-api': 'off',
- 'fsd/ambiguous-slice-names': 'off',
- 'fsd/no-processes': 'off',
- },
- },
-])
-```
-
- |
-
-> [!NOTE]
-> The codemod will probably get the formatting wrong, so don't forget to check the file yourself after migration.
-
-**pnpm**:
-
-```shell
-pnpx jscodeshift -t https://raw.githubusercontent.com/feature-sliced/steiger/master/packages/steiger/migrations/convert-config-to-flat.js steiger.config.js
-```
-
-**yarn**:
-
-```shell
-yarn dlx jscodeshift -t https://raw.githubusercontent.com/feature-sliced/steiger/master/packages/steiger/migrations/convert-config-to-flat.js steiger.config.js
-```
-
-**npm**:
-
-```shell
-npx jscodeshift -t https://raw.githubusercontent.com/feature-sliced/steiger/master/packages/steiger/migrations/convert-config-to-flat.js steiger.config.js
-```
diff --git a/README.md b/README.md
index 167b74e..1b2e56e 100644
--- a/README.md
+++ b/README.md
@@ -7,22 +7,19 @@ Universal file structure and project architecture linter.
> [!NOTE]
> The project is in beta and in active development. Some APIs may change.
-> [!NOTE]
-> Version 0.5.0 introduced a new config file format. We have a codemod to automatically update your config, see the [migration guide](./MIGRATION_GUIDE.md).
-
-## Features
+# Features
- Built-in set of rules to validate adherence to [Feature-Sliced Design](https://feature-sliced.design/)
- Watch mode
- Rule configurability
-## Installation
+# Installation
```bash
npm i -D steiger
```
-## Usage
+# Usage
```bash
npx steiger ./src
@@ -34,79 +31,23 @@ To run in watch mode, add `-w`/`--watch` to the command:
npx steiger ./src --watch
```
-## Configuration
+# Configuration
Steiger is zero-config! If you don't want to disable certain rules, you can safely skip this section.
Steiger is configurable via `cosmiconfig`. That means that you can create a `steiger.config.ts` or `steiger.config.js` file in the root of your project to configure the rules. Import `{ defineConfig } from "steiger"` to get autocompletion.
-The config file shape is highly inspired by ESLint's config file, so if you have configured ESLint before, you'll find it easy to configure Steiger.
-
-### Example
-
-```javascript
-// ./steiger.config.js
+```ts
import { defineConfig } from 'steiger'
-import fsd from '@feature-sliced/steiger-plugin'
-
-export default defineConfig([
- ...fsd.configs.recommended,
- {
- // disable the `public-api` rule for files in the Shared layer
- files: ['./src/shared/**'],
- rules: {
- 'fsd/public-api': 'off',
- },
+
+export default defineConfig({
+ rules: {
+ 'public-api': 'off',
},
-])
+})
```
-> [!TIP]
-> If you want Steiger to ignore certain files, add an object like this to the config array:
->
-> ```js
-> defineConfig([, /* … */ { ignores: ['**/__mocks__/**'] }])
-> ```
-
-
- Comprehensive showcase of the config file syntax
-
- ```javascript
- // ./steiger.config.ts
- import { defineConfig } from 'steiger'
- import fsd from '@feature-sliced/steiger-plugin'
-
- export default defineConfig([
- ...fsd.configs.recommended,
- {
- // ignore all mock files for all rules
- ignores: ['**/__mocks__/**'],
- },
- {
- files: ['./src/shared/**'],
- rules: {
- // disable public-api rule for files in /shared folder
- 'fsd/public-api': 'off',
- },
- },
- {
- files: ['./src/widgets/**'],
- ignores: ['**/discount-offers/**'],
- rules: {
- // disable no-segmentless-slices rule for all widgets except /discount-offers
- 'fsd/no-segmentless-slices': 'off',
- },
- },
- ])
- ```
- [You can see more examples here](CONFIG_EXAMPLES.md)
-
-
-### Migration from 0.4.0
-
-Version 0.5.0 introduced a new config file format. Follow the [instructions](MIGRATION_GUIDE.md) to migrate your config file.
-
-## Rules
+# Rules
Currently, Steiger is not extendable with more rules, though that will change in the near future. The built-in rules check for the project's adherence to [Feature-Sliced Design](https://feature-sliced.design/).
@@ -139,12 +80,12 @@ Currently, Steiger is not extendable with more rules, though that will change in
-## Contribution
+# Contribution
Feel free to report an issue or open a discussion. Ensure you read our [Code of Conduct](CODE_OF_CONDUCT.md) first though :)
To get started with the codebase, see our [Contributing guide](CONTRIBUTING.md).
-## Legal info
+# Legal info
Project licensed under [MIT License](LICENSE.md). [Here's what it means](https://choosealicense.com/licenses/mit/)
diff --git a/packages/steiger/README.md b/packages/steiger/README.md
index 656de3c..1b2e56e 100644
--- a/packages/steiger/README.md
+++ b/packages/steiger/README.md
@@ -7,22 +7,19 @@ Universal file structure and project architecture linter.
> [!NOTE]
> The project is in beta and in active development. Some APIs may change.
-> [!NOTE]
-> Version 0.5.0 introduced a new config file format. We have a codemod to automatically update your config, see the [migration guide](./MIGRATION_GUIDE.md).
-
-## Features
+# Features
- Built-in set of rules to validate adherence to [Feature-Sliced Design](https://feature-sliced.design/)
- Watch mode
- Rule configurability
-## Installation
+# Installation
```bash
npm i -D steiger
```
-## Usage
+# Usage
```bash
npx steiger ./src
@@ -34,81 +31,23 @@ To run in watch mode, add `-w`/`--watch` to the command:
npx steiger ./src --watch
```
-## Configuration
+# Configuration
Steiger is zero-config! If you don't want to disable certain rules, you can safely skip this section.
Steiger is configurable via `cosmiconfig`. That means that you can create a `steiger.config.ts` or `steiger.config.js` file in the root of your project to configure the rules. Import `{ defineConfig } from "steiger"` to get autocompletion.
-The config file shape is highly inspired by ESLint's config file, so if you have configured ESLint before, you'll find it easy to configure Steiger.
-
-### Example
-
-```javascript
-// ./steiger.config.js
-import { defineConfig } from 'steiger'
-import fsd from '@feature-sliced/steiger-plugin'
-
-export default defineConfig([
- ...fsd.configs.recommended,
- {
- // disable the `public-api` rule for files in the Shared layer
- files: ['./src/shared/**'],
- rules: {
- 'fsd/public-api': 'off',
- },
- },
-])
-```
-
-> [!TIP]
-> If you want Steiger to ignore certain files, add an object like this to the config array:
->
-> ```js
-> defineConfig([, /* … */ { ignores: ['**/__mocks__/**'] }])
-> ```
-
-
- Comprehensive showcase of the config file syntax
-
-```javascript
-// ./steiger.config.ts
+```ts
import { defineConfig } from 'steiger'
-import fsd from '@feature-sliced/steiger-plugin'
-export default defineConfig([
- ...fsd.configs.recommended,
- {
- // ignore all mock files for all rules
- ignores: ['**/__mocks__/**'],
- },
- {
- files: ['./src/shared/**'],
- rules: {
- // disable public-api rule for files in /shared folder
- 'fsd/public-api': 'off',
- },
- },
- {
- files: ['./src/widgets/**'],
- ignores: ['**/discount-offers/**'],
- rules: {
- // disable no-segmentless-slices rule for all widgets except /discount-offers
- 'fsd/no-segmentless-slices': 'off',
- },
+export default defineConfig({
+ rules: {
+ 'public-api': 'off',
},
-])
+})
```
-[You can see more examples here](../../CONFIG_EXAMPLES.md)
-
-
-
-### Migration from 0.4.0
-
-Version 0.5.0 introduced a new config file format. Follow the [instructions](../../MIGRATION_GUIDE.md) to migrate your config file.
-
-## Rules
+# Rules
Currently, Steiger is not extendable with more rules, though that will change in the near future. The built-in rules check for the project's adherence to [Feature-Sliced Design](https://feature-sliced.design/).
@@ -141,12 +80,12 @@ Currently, Steiger is not extendable with more rules, though that will change in
-## Contribution
+# Contribution
-Feel free to report an issue or open a discussion. Ensure you read our [Code of Conduct](../../CODE_OF_CONDUCT.md) first though :)
+Feel free to report an issue or open a discussion. Ensure you read our [Code of Conduct](CODE_OF_CONDUCT.md) first though :)
-To get started with the codebase, see our [Contributing guide](../../CONTRIBUTING.md).
+To get started with the codebase, see our [Contributing guide](CONTRIBUTING.md).
-## Legal info
+# Legal info
-Project licensed under [MIT License](../../LICENSE.md). [Here's what it means](https://choosealicense.com/licenses/mit/)
+Project licensed under [MIT License](LICENSE.md). [Here's what it means](https://choosealicense.com/licenses/mit/)