Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

What has changed from version 7 up to version 9 #3

Open
wants to merge 3 commits into
base: 12-04-dealing-with-big-e2e-suites
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@ module.exports = {
parser: '@typescript-eslint/parser',
parserOptions: {
project: 'tsconfig.json',
tsconfigRootDir : __dirname,
sourceType: 'module',
},
plugins: ['@typescript-eslint/eslint-plugin'],
extends: [
'plugin:@typescript-eslint/recommended',
'prettier/@typescript-eslint',
'plugin:prettier/recommended',
],
root: true,
Expand Down
16 changes: 14 additions & 2 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,16 @@
{
"editor.suggest.localityBonus": true,
"editor.snippetSuggestions": "bottom"
"eslint.validate": [
"javascript",
"typescript"
],
"eslint.format.enable": true,
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true
},
"[typescript]": {
"editor.formatOnSave": false
},
"workbench.colorTheme": "Carbon Theme",
"editor.fontFamily": "Cascadia Code",
"editor.fontWeight": "400",
}
6 changes: 3 additions & 3 deletions dev.env
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
DB_HOST=localhost
DB_HOST=127.0.0.1
DB_PORT=3306
DB_USER=root
DB_PASSWORD=example
DB_PASSWORD=root
DB_NAME=nest-events
DB_DROP_SCHEMA=0
DB_DROP_SCHEMA=1

APP_URL=mywebsite.com
SUPPORT_EMAIL=support@${APP_URL}
Expand Down
4 changes: 2 additions & 2 deletions e2e.env
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
DB_HOST=localhost
DB_HOST=127.0.0.1
DB_PORT=3306
DB_USER=root
DB_PASSWORD=example
DB_PASSWORD=root
DB_NAME=nest-events-e2e
DB_DROP_SCHEMA=1

Expand Down
Loading