Skip to content

Commit

Permalink
Merge pull request #147 from spryker-shop/release-202307.0
Browse files Browse the repository at this point in the history
Release 202307.0
  • Loading branch information
DmitryLymarenko authored Jul 27, 2023
2 parents 7a09058 + 4c27cd8 commit 1aced62
Show file tree
Hide file tree
Showing 513 changed files with 41,747 additions and 51,939 deletions.
293 changes: 0 additions & 293 deletions .eslintrc.js

This file was deleted.

35 changes: 35 additions & 0 deletions .eslintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
{
"root": true,
"extends": ["./node_modules/@spryker/frontend-config.eslint/.eslintrc.js", "plugin:@typescript-eslint/recommended"],
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaVersion": 2020,
"sourceType": "module",
"project": "./tsconfig.yves.json"
},
"plugins": ["deprecation"],
"ignorePatterns": [
"docker/",
"public/*/assets/",
"**/dist/",
"**/node_modules/",
"vendor/",
"src/Pyz/Zed/*/Presentation/Components/"
],
"rules": {
"accessor-pairs": ["error", { "setWithoutGet": true, "enforceForClassMembers": false }],
"@typescript-eslint/no-empty-function": ["error", { "allow": ["methods"] }],
"@typescript-eslint/no-magic-numbers": [
"error",
{
"ignore": [-1, 0, 1],
"ignoreDefaultValues": true,
"ignoreClassFieldInitialValues": true,
"ignoreArrayIndexes": true,
"ignoreEnums": true,
"ignoreReadonlyClassProperties": true
}
],
"deprecation/deprecation": "warn"
}
}
Loading

0 comments on commit 1aced62

Please sign in to comment.