Skip to content

Commit

Permalink
Fix phpstan baseline and eslint config (#6493)
Browse files Browse the repository at this point in the history
* Update phpstan baseline

* Adjust eslint rule to behave the same
  • Loading branch information
alexander-schranz committed Mar 2, 2022
1 parent 0556f12 commit 4d8d2f6
Show file tree
Hide file tree
Showing 6 changed files with 822 additions and 443 deletions.
2 changes: 1 addition & 1 deletion .env
Expand Up @@ -21,7 +21,7 @@ MAILER_URL=null://localhost
# For an SQLite database, use: "sqlite:///%kernel.project_dir%/var/data.db"
# For a PostgreSQL database, use: "postgresql://db_user:db_password@127.0.0.1:5432/db_name?serverVersion=11&charset=utf8"
# IMPORTANT: You MUST configure your server version, either here or in config/packages/doctrine.yaml
DATABASE_URL=mysql://db_user:db_password@127.0.0.1:3306/su_develop_sulu?serverVersion=5.7
DATABASE_URL=mysql://root:ChangeMe@127.0.0.1:3306/su_develop_sulu?serverVersion=5.7
###< doctrine/doctrine-bundle ###

###> sulu/sulu-bundle ###
Expand Down
6 changes: 5 additions & 1 deletion .eslintrc.json
Expand Up @@ -143,7 +143,11 @@
"react/no-deprecated": "error",
"react/jsx-curly-brace-presence": [
"error",
"never"
{
"props": "never",
"children": "never",
"propElementValues": "always"
}
],
"react/jsx-curly-spacing": [
"error",
Expand Down

0 comments on commit 4d8d2f6

Please sign in to comment.