-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
9 changed files
with
347 additions
and
321 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,4 +13,4 @@ | |
*.war binary | ||
*.pdf binary | ||
*.zip binary | ||
*.icns binary | ||
*.icns binary |
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,14 @@ | ||
# Use single quotes for strings, because that is the Angular default | ||
singleQuote: true | ||
|
||
# The following settings prevent excessive use of vertical space | ||
bracketSameLine: true # avoid closing '>' each on its own line | ||
|
||
# Line endings are converted to lf using git, but may be checked out as crlf on windows | ||
endOfLine: lf | ||
|
||
# We prefer to use more horizontal space than the prettier default of 80, esp. for html | ||
printWidth: 100 | ||
|
||
plugins: | ||
- 'prettier-plugin-sh' |
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 |
---|---|---|
@@ -1,13 +1,13 @@ | ||
# Kanbanflow Application | ||
|
||
[![Travis Build Status](https://travis-ci.org/metawave/kanbanflow-app.svg?branch=master)](https://travis-ci.org/metawave/kanbanflow-app) | ||
|
||
This app wraps the great kanbanflow.com application as a standalone app. | ||
|
||
|
||
![Screenshot](KanbanFlow.png) | ||
|
||
## Usage | ||
|
||
Login with your credentials and get work done! | ||
|
||
Use Alt key to bring up the menu, where you can increase/decrease zoom-factor and also reload the webapp, when you run into unexpected behaviour. | ||
Use Alt key to bring up the menu, where you can increase/decrease zoom-factor and also reload the webapp, when you run into unexpected behaviour. |
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 |
---|---|---|
@@ -1,11 +1,10 @@ | ||
import globals from "globals"; | ||
import pluginJs from "@eslint/js"; | ||
import tseslint from "typescript-eslint"; | ||
|
||
import globals from 'globals'; | ||
import pluginJs from '@eslint/js'; | ||
import tseslint from 'typescript-eslint'; | ||
|
||
export default [ | ||
{files: ["**/*.{js,mjs,cjs,ts}"]}, | ||
{languageOptions: { globals: globals.browser }}, | ||
{ files: ['**/*.{js,mjs,cjs,ts}'] }, | ||
{ languageOptions: { globals: globals.browser } }, | ||
pluginJs.configs.recommended, | ||
...tseslint.configs.recommended, | ||
]; | ||
]; |
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 |
---|---|---|
@@ -1,6 +1,4 @@ | ||
{ | ||
"$schema": "https://docs.renovatebot.com/renovate-schema.json", | ||
"extends": [ | ||
"config:base" | ||
] | ||
"extends": ["config:base"] | ||
} |
Oops, something went wrong.