-
Notifications
You must be signed in to change notification settings - Fork 0
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
#9 #12
#9 #12
Changes from 6 commits
28c4711
74782fc
c2a9295
08a5e67
01f181f
e4dafdf
1a345b1
5698ae1
6b10bca
8564fa4
9f3ffc4
4f7eb0a
e3e9b5b
227def1
43e59cc
27deb8b
bf72ef1
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,7 +9,6 @@ node_modules | |
.* | ||
!.travis.yml | ||
!.editorconfig | ||
!.eslintrc.json | ||
*.xml | ||
.settings | ||
downloads | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,5 @@ | ||
/* eslint no-undef: 0 */ | ||
|
||
'use strict' | ||
/* eslint new-cap: 0 */ | ||
|
||
const { defineSupportCode } = require('cucumber') | ||
const { pageObject, getPageObject } = require('../helpers/objects.processor') | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Lets try to use no semicolons. |
||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,3 @@ | ||
'use strict' | ||
let e = {} | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Lets try to use no semicolons. |
||
|
||
e.txtHeader = '//*[@id="header"]' | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
If we will remove this line, then any changes to
.eslintrc.json
will not be tracked by git - are we sure that it should not be tracked?