Skip to content

Commit

Permalink
Merge pull request #38 from Iteo/rc/0.2.0
Browse files Browse the repository at this point in the history
Fix: downgrade file version
  • Loading branch information
Devi88 committed Oct 2, 2023
2 parents 5d2b088 + 399242b commit b43ccf3
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 5 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
## 0.2.0
- fix: Downgrade File version

## 0.1.0
- feat: Unified keyword case
- fix: File interpreted as layer
Expand Down
4 changes: 2 additions & 2 deletions pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: architecture_linter
description: Software analytics tool that helps developers analyse and improve project architecture structure.
homepage: https://github.com/Iteo/architecture_linter
repository: https://github.com/Iteo/architecture_linter
version: 0.1.0
version: 0.2.0

environment:
sdk: '>=3.0.0 <4.0.0'
Expand All @@ -12,7 +12,7 @@ dependencies:
analyzer_plugin: '>=0.10.0 <0.12.0'
args: ^2.4.0
collection: ^1.17.0
file: ^7.0.0
file: ^6.0.0
glob: ^2.1.0
path: ^1.8.0
yaml: ^3.1.0
Expand Down
6 changes: 3 additions & 3 deletions test/mocks/config.dart
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ class ConfigMocks {
domainLayer,
presentationLayer,
modelLayer,
infrastructureLayer
infrastructureLayer,
];
static List<Glob> excludes = [
Glob('**.g.dart'),
Expand All @@ -63,12 +63,12 @@ class ConfigMocks {
}

static Map<Layer, LintSeverity> bannedImportsSeverities = {
infrastructureLayer: LintSeverity.info
infrastructureLayer: LintSeverity.info,
};

static List<LayerConfig> layersConfig = [
LayerConfig(severity: LintSeverity.error, layer: modelLayer),
LayerConfig(severity: LintSeverity.error, layer: infrastructureLayer)
LayerConfig(severity: LintSeverity.error, layer: infrastructureLayer),
];

static ProjectConfiguration baseConfigMock = ProjectConfiguration(
Expand Down

0 comments on commit b43ccf3

Please sign in to comment.