-
Notifications
You must be signed in to change notification settings - Fork 91
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: install @nextcloud/prettier-config, eslint-config-prettier
Signed-off-by: Luka Trovic <[email protected]>
- Loading branch information
1 parent
7fda38c
commit e33acfe
Showing
113 changed files
with
2,722 additions
and
1,565 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
# version control systems directories | ||
**/.git | ||
**/.svn | ||
**/.hg | ||
|
||
# 3rdparty dependencies | ||
**/node_modules | ||
**/vendor | ||
|
||
# Compiled JS output | ||
js/ | ||
|
||
# PHP | ||
lib/ | ||
**/*.php |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -27,6 +27,11 @@ describe('test link marks', function() { | |
|
||
describe('link bubble', function() { | ||
|
||
/** | ||
* | ||
* @param link | ||
Check warning on line 32 in cypress/e2e/nodes/Links.spec.js GitHub Actions / NPM lint
Check warning on line 32 in cypress/e2e/nodes/Links.spec.js GitHub Actions / NPM lint
|
||
* @param options | ||
Check warning on line 33 in cypress/e2e/nodes/Links.spec.js GitHub Actions / NPM lint
Check warning on line 33 in cypress/e2e/nodes/Links.spec.js GitHub Actions / NPM lint
|
||
*/ | ||
function clickLink(link, options = {}) { | ||
cy.getContent() | ||
.find(`a[href*="${link}"]`) | ||
|
Oops, something went wrong.