Skip to content
This repository has been archived by the owner on Jun 28, 2024. It is now read-only.

Commit

Permalink
Merge pull request #265 from superfaceai/dev
Browse files Browse the repository at this point in the history
Prepare for 3.0.0 release
  • Loading branch information
freaz authored Feb 8, 2023
2 parents 8f2a396 + 4bfecd4 commit 1097387
Show file tree
Hide file tree
Showing 230 changed files with 14,179 additions and 10,870 deletions.
15 changes: 13 additions & 2 deletions .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ module.exports = {
'@typescript-eslint',
'jest',
'simple-import-sort',
'jest-formatting',
],
extends: [
'eslint:recommended',
Expand All @@ -18,6 +19,7 @@ module.exports = {
'plugin:import/errors',
'plugin:import/warnings',
'plugin:jest/recommended',
'plugin:jest-formatting/recommended',
'prettier',
],
rules: {
Expand All @@ -32,9 +34,17 @@ module.exports = {
'lines-between-class-members': 'off',
'@typescript-eslint/lines-between-class-members': ['error', 'always', { exceptAfterSingleLine: true, exceptAfterOverload: true }],
'@typescript-eslint/require-await': 'off',
'spaced-comment': ['error', 'always'],
'quotes': 'off',
'@typescript-eslint/quotes': ['warn', 'single', { avoidEscape: true }],
'@typescript-eslint/no-inferrable-types': ['warn']
'@typescript-eslint/quotes': ['warn', 'single', { avoidEscape: true, allowTemplateLiterals: true }],
'@typescript-eslint/no-inferrable-types': ['warn'],
'no-implicit-coercion': 'error',
'@typescript-eslint/strict-boolean-expressions': 'error',
'@typescript-eslint/explicit-member-accessibility': [
'error',
{ accessibility: 'explicit', overrides: { constructors: 'no-public' } },
],
'@typescript-eslint/consistent-type-imports': ['error', { prefer: 'type-imports' }],
},
settings: {
'import/parsers': {
Expand All @@ -50,6 +60,7 @@ module.exports = {
files: '*.test.ts',
rules: {
'@typescript-eslint/no-explicit-any': 'off',
'@typescript-eslint/no-unsafe-return': 'off',
'@typescript-eslint/no-unsafe-assignment': 'off',
'@typescript-eslint/no-non-null-assertion': 'off',
'@typescript-eslint/unbound-method': 'off',
Expand Down
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,13 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]
### Added
- New `prepare:map` command
- New `prepare:mock-map` command
- New `prepare:profile` command
- New `prepare:test` command
- New `prepare:mock-map-test` command
- New `prepare:provider` command

## [2.0.0] - 2022-08-15
### Changed
Expand Down
251 changes: 189 additions & 62 deletions README.md

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions fixtures/compiled/strict.suma.ast.json
Original file line number Diff line number Diff line change
Expand Up @@ -2187,12 +2187,12 @@
"astMetadata": {
"astVersion": {
"major": 1,
"minor": 2,
"minor": 3,
"patch": 0
},
"parserVersion": {
"major": 1,
"minor": 2,
"major": 2,
"minor": 1,
"patch": 0
},
"sourceChecksum": "bfd83d45dcc6e3ce124163f9e2029574fe239a5c7dac6b71b1a6261b4342e68b"
Expand Down
6 changes: 3 additions & 3 deletions fixtures/compiled/strict.supr.ast.json
Original file line number Diff line number Diff line change
Expand Up @@ -677,12 +677,12 @@
"astMetadata": {
"astVersion": {
"major": 1,
"minor": 2,
"minor": 3,
"patch": 0
},
"parserVersion": {
"major": 1,
"minor": 2,
"major": 2,
"minor": 1,
"patch": 0
},
"sourceChecksum": "db2fa60e8a2a8a7bd4e1d97b62b39812934dbd4dca22cb2bbe14e7d067358380"
Expand Down
Loading

0 comments on commit 1097387

Please sign in to comment.