generated from aljawaid/KanboardSkeletonPlugin
-
-
Notifications
You must be signed in to change notification settings - Fork 1
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
12 changed files
with
2,442 additions
and
0 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 |
---|---|---|
@@ -1,3 +1,4 @@ | ||
--- | ||
# These are supported funding model platforms | ||
|
||
github: aljawaid |
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,17 @@ | ||
{ | ||
"env": { | ||
"browser": true, | ||
"commonjs": true, | ||
"jquery": true, | ||
"es2021": true | ||
}, | ||
"root": true, | ||
"extends": "eslint:recommended", | ||
"ignorePatterns": ["clipboard-*.min.js", "**/vendor/*.js"], | ||
"globals": { | ||
"ClipboardJS": "readonly" | ||
}, | ||
"rules": { | ||
"no-undef": "warn" | ||
} | ||
} |
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,31 @@ | ||
{ | ||
"attr-unsafe-chars": true, | ||
"attr-lowercase": true, | ||
"attr-no-unnecessary-whitespace": true, | ||
"attr-value-double-quotes": true, | ||
"attr-value-not-empty": false, | ||
"attr-no-duplication": true, | ||
"attr-whitespace": true, | ||
"alt-require": true, | ||
"doctype-first": true, | ||
"tagname-lowercase": true, | ||
"tagname-specialchars": true, | ||
"tag-pair": true, | ||
"tag-self-close": false, | ||
"empty-tag-not-self-closed": true, | ||
"src-not-empty": true, | ||
"href-abs-or-rel": false, | ||
"spec-char-escape": true, | ||
"style-disabled": false, | ||
"inline-style-disabled": false, | ||
"inline-script-disabled": false, | ||
"space-tab-mixed-disabled": "tab", | ||
"id-class-ad-disabled": true, | ||
"id-unique": true, | ||
"id-class-value": "dash", | ||
"html-lang-require": true, | ||
"doctype-first": true, | ||
"doctype-html5": true, | ||
"title-require": true, | ||
"head-script-disabled": true | ||
} |
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,38 @@ | ||
{ | ||
"MD007": { | ||
"description": "MD007/ul-indent - Unordered list indentation", | ||
"type": [ | ||
"boolean", | ||
"object" | ||
], | ||
"default": true, | ||
"properties": { | ||
"indent": { | ||
"description": "Spaces for indent", | ||
"type": "integer", | ||
"minimum": 1, | ||
"default": 4 | ||
}, | ||
"start_indented": { | ||
"description": "Whether to indent the first level of the list", | ||
"type": "boolean", | ||
"default": false | ||
}, | ||
"start_indent": { | ||
"description": "Spaces for first level indent (when start_indented is set)", | ||
"type": "integer", | ||
"minimum": 1, | ||
"default": 4 | ||
} | ||
}, | ||
"additionalProperties": false | ||
}, | ||
"ul-indent": { | ||
"$ref": "#/properties/MD007" | ||
}, | ||
"MD033": false, | ||
"MD013": false, | ||
"MD036": false, | ||
"MD012": false, | ||
"MD032": false | ||
} |
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,80 @@ | ||
{ | ||
"extends": "stylelint-config-standard", | ||
"rules": { | ||
"no-extra-semicolons": true, | ||
"number-leading-zero": "never", | ||
"shorthand-property-no-redundant-values": null, | ||
"comment-whitespace-inside": [ | ||
"always", | ||
{ | ||
"severity": "warning" | ||
} | ||
], | ||
"font-family-name-quotes": "always-where-recommended", | ||
"font-weight-notation": "named-where-possible", | ||
"font-family-no-missing-generic-family-keyword": [ | ||
true, | ||
{ | ||
"ignoreFontFamilies": ["FontAwesome"], | ||
"severity": "warning" | ||
} | ||
], | ||
"color-no-invalid-hex": true, | ||
"color-hex-case": "upper", | ||
"color-hex-length": [ | ||
"long", | ||
{ | ||
"severity": "warning" | ||
} | ||
], | ||
"alpha-value-notation": "number", | ||
"value-list-comma-newline-after": null, | ||
"length-zero-no-unit": true, | ||
"no-descending-specificity": null, | ||
"string-quotes": "double", | ||
"selector-type-case": "lower", | ||
"selector-class-pattern": null, | ||
"selector-id-pattern": [ | ||
"([A-Z][a-z0-9]+)((\\d)|([A-Z0-9][a-z0-9]+))*([A-Z])?", | ||
{ | ||
"message": "Expected CSS Selector ID pattern to be CamelCase", | ||
"severity": "warning" | ||
} | ||
], | ||
"value-list-comma-space-after": "always", | ||
"color-function-notation": "legacy", | ||
"number-max-precision": 5, | ||
"value-keyword-case": [ | ||
"lower", | ||
{ | ||
"ignoreProperties": ["/^(b|B)ackground$/", "text-rendering"] | ||
} | ||
], | ||
"comment-empty-line-before": [ | ||
"always", | ||
{ | ||
"except": ["first-nested"], | ||
"ignore": ["after-comment"], | ||
"severity": "warning" | ||
} | ||
], | ||
"declaration-block-no-redundant-longhand-properties": [ | ||
true, | ||
{ | ||
"severity": "warning" | ||
} | ||
], | ||
"property-no-vendor-prefix": null, | ||
"selector-no-vendor-prefix": null, | ||
"at-rule-no-vendor-prefix": null, | ||
"value-no-vendor-prefix": null, | ||
"declaration-no-important": [ | ||
true, | ||
{ | ||
"message": "Try not to use !important in your declaration", | ||
"severity": "warning" | ||
} | ||
], | ||
"media-feature-range-notation": null | ||
} | ||
} |
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,55 @@ | ||
--- | ||
########################################### | ||
# These are the rules used for # | ||
# linting all the yaml files in the stack # | ||
# NOTE: # | ||
# You can disable line with: # | ||
# # yamllint disable-line # | ||
########################################### | ||
rules: | ||
braces: | ||
level: warning | ||
min-spaces-inside: 0 | ||
max-spaces-inside: 0 | ||
min-spaces-inside-empty: 0 | ||
max-spaces-inside-empty: 0 | ||
brackets: | ||
level: warning | ||
min-spaces-inside: 0 | ||
max-spaces-inside: 0 | ||
min-spaces-inside-empty: 0 | ||
max-spaces-inside-empty: 5 | ||
colons: | ||
level: warning | ||
max-spaces-before: 0 | ||
max-spaces-after: 1 | ||
commas: | ||
level: warning | ||
max-spaces-before: 0 | ||
min-spaces-after: 1 | ||
max-spaces-after: 1 | ||
comments: disable | ||
comments-indentation: disable | ||
document-end: disable | ||
document-start: | ||
level: warning | ||
present: true | ||
empty-lines: | ||
level: warning | ||
max: 2 | ||
max-start: 0 | ||
max-end: 0 | ||
hyphens: | ||
level: warning | ||
max-spaces-after: 1 | ||
indentation: | ||
level: warning | ||
spaces: consistent | ||
indent-sequences: true | ||
check-multi-line-strings: false | ||
key-duplicates: enable | ||
line-length: disable | ||
new-line-at-end-of-file: enable | ||
new-lines: | ||
type: unix | ||
trailing-spaces: {} |
Oops, something went wrong.