-
Notifications
You must be signed in to change notification settings - Fork 0
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
0 parents
commit 427ae3a
Showing
126 changed files
with
33,651 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 |
---|---|---|
@@ -0,0 +1,234 @@ | ||
{ | ||
"env": { | ||
"node": true, | ||
"browser": true, | ||
"es2021": true | ||
}, | ||
"extends": [ | ||
// "eslint:recommended", | ||
"prettier" | ||
], | ||
"parserOptions": { | ||
"sourceType": "module", | ||
"ecmaVersion": 2022 | ||
}, | ||
"rules": { | ||
// Possible Errors (overrides from recommended set) | ||
|
||
// "no-extra-parens": "error", | ||
"no-unexpected-multiline": "error", | ||
|
||
// All JSDoc comments must be valid | ||
|
||
"valid-jsdoc": [ "error", { | ||
"requireReturn": true, | ||
"requireReturnDescription": true, | ||
"requireParamDescription": true, | ||
"prefer": { | ||
"return": "returns" | ||
} | ||
}], | ||
|
||
// Best Practices | ||
|
||
// Allowed a getter without setter, but all setters require getters | ||
|
||
"accessor-pairs": [ "error", { | ||
"getWithoutSet": false, | ||
"setWithoutGet": true | ||
}], | ||
"block-scoped-var": "warn", | ||
"consistent-return": "error", | ||
"curly": "error", | ||
// "default-case": "warn", | ||
|
||
// the dot goes with the property when doing multiline | ||
|
||
// "dot-location": [ "warn", "property" ], | ||
// "dot-notation": "warn", | ||
// "eqeqeq": [ "error", "smart" ], | ||
// "guard-for-in": "warn", | ||
"no-alert": "error", | ||
"no-caller": "error", | ||
// "no-case-declarations": "warn", | ||
// "no-div-regex": "warn", | ||
// "no-else-return": "warn", | ||
// "no-empty-label": "warn", | ||
// "no-empty-pattern": "warn", | ||
// "no-eq-null": "warn", | ||
// "no-eval": "error", | ||
// "no-extend-native": "error", | ||
// "no-extra-bind": "warn", | ||
// "no-floating-decimal": "warn", | ||
// "no-implicit-coercion": [ "warn", { | ||
// "boolean": true, | ||
// "number": true, | ||
// "string": true | ||
// }], | ||
// "no-implied-eval": "error", | ||
// "no-invalid-this": "error", | ||
// "no-iterator": "error", | ||
// "no-labels": "warn", | ||
// "no-lone-blocks": "warn", | ||
// "no-loop-func": "error", | ||
// "no-magic-numbers": "warn", | ||
// "no-multi-spaces": "error", | ||
// "no-multi-str": "warn", | ||
// "no-native-reassign": "error", | ||
// "no-new-func": "error", | ||
// "no-new-wrappers": "error", | ||
// "no-new": "error", | ||
// "no-octal-escape": "error", | ||
// "no-param-reassign": "error", | ||
// "no-process-env": "warn", | ||
// "no-proto": "error", | ||
// "no-redeclare": "error", | ||
// "no-return-assign": "error", | ||
// "no-script-url": "error", | ||
// "no-self-compare": "error", | ||
// "no-throw-literal": "error", | ||
// "no-unused-expressions": "error", | ||
// "no-useless-call": "error", | ||
// "no-useless-concat": "error", | ||
// "no-void": "warn", | ||
|
||
// Produce warnings when something is commented as TODO or FIXME | ||
|
||
"no-warning-comments": [ "warn", { | ||
"terms": [ "TODO", "FIXME" ], | ||
"location": "start" | ||
}], | ||
"no-with": "warn", | ||
"radix": "warn", | ||
// "vars-on-top": "error", | ||
|
||
// Enforces the style of wrapped functions | ||
// "wrap-iife": [ "error", "outside" ], | ||
// "yoda": "error", | ||
|
||
// Strict Mode - for ES6, never use strict. | ||
// "strict": [ "error", "never" ], | ||
|
||
// Variables | ||
|
||
// "init-declarations": [ "error", "always" ], | ||
// "no-catch-shadow": "warn", | ||
"no-delete-var": "error", | ||
// "no-label-var": "error", | ||
// "no-shadow-restricted-names": "error", | ||
// "no-shadow": "warn", | ||
|
||
// We require all vars to be initialized (see init-declarations) | ||
// If we NEED a var to be initialized to undefined, it needs to be explicit | ||
|
||
"no-undef-init": "off", | ||
"no-undef": "error", | ||
"no-undefined": "off", | ||
"no-unused-vars": "warn", | ||
|
||
// Disallow hoisting - let & const don't allow hoisting anyhow | ||
|
||
"no-use-before-define": "error", | ||
|
||
// Node.js and CommonJS | ||
|
||
// "callback-return": [ "warn", [ "callback", "next" ]], | ||
// "global-require": "error", | ||
// "handle-callback-err": "warn", | ||
// "no-mixed-requires": "warn", | ||
// "no-new-require": "error", | ||
|
||
// Use path.concat instead | ||
|
||
// "no-path-concat": "error", | ||
// "no-process-exit": "error", | ||
// "no-restricted-modules": "off", | ||
// "no-sync": "warn", | ||
|
||
// ECMAScript 6 support | ||
|
||
// "arrow-body-style": [ "error", "always" ], | ||
// "arrow-parens": [ "error", "always" ], | ||
// "arrow-spacing": [ "error", { "before": true, "after": true }], | ||
"constructor-super": "error", | ||
// "generator-star-spacing": [ "error", "before" ], | ||
// "no-arrow-condition": "error", | ||
"no-class-assign": "error", | ||
"no-const-assign": "error", | ||
"no-dupe-class-members": "error", | ||
"no-this-before-super": "error", | ||
// "no-var": "warn", | ||
"object-shorthand": [ "warn" ], | ||
// "prefer-arrow-callback": "warn", | ||
// "prefer-spread": "warn", | ||
// "prefer-template": "warn", | ||
// "require-yield": "error", | ||
|
||
// Stylistic - everything here is a warning because of style. | ||
|
||
// "array-bracket-spacing": [ "warn", "always" ], | ||
// "block-spacing": [ "warn", "always" ], | ||
// "brace-style": [ "warn", "1tbs", { "allowSingleLine": false } ], | ||
// "camelcase": "warn", | ||
// "comma-spacing": [ "warn", { "before": false, "after": true } ], | ||
// "comma-style": [ "warn", "last" ], | ||
// "computed-property-spacing": [ "warn", "never" ], | ||
// "consistent-this": [ "warn", "self" ], | ||
// "eol-last": "warn", | ||
// "func-names": "warn", | ||
// "func-style": [ "warn", "declaration" ], | ||
// "id-length": [ "warn", { "min": 2, "max": 32 } ], | ||
// "indent": [ "warn", 4 ], | ||
// "jsx-quotes": [ "warn", "prefer-double" ], | ||
// "linebreak-style": [ "warn", "unix" ], | ||
// "lines-around-comment": [ "warn", { "beforeBlockComment": true } ], | ||
// "max-depth": [ "warn", 8 ], | ||
// "max-len": [ "warn", 132 ], | ||
// "max-nested-callbacks": [ "warn", 8 ], | ||
// "max-params": [ "warn", 8 ], | ||
// "new-cap": "warn", | ||
// "new-parens": "warn", | ||
// "no-array-constructor": "warn", | ||
// "no-bitwise": "off", | ||
// "no-continue": "off", | ||
// "no-inline-comments": "off", | ||
// "no-lonely-if": "warn", | ||
"no-mixed-spaces-and-tabs": "warn", | ||
"no-multiple-empty-lines": "warn", | ||
"no-negated-condition": "warn", | ||
// "no-nested-ternary": "warn", | ||
// "no-new-object": "warn", | ||
// "no-plusplus": "off", | ||
// "no-spaced-func": "warn", | ||
// "no-ternary": "off", | ||
// "no-trailing-spaces": "warn", | ||
// "no-underscore-dangle": "warn", | ||
"no-unneeded-ternary": "warn", | ||
// "object-curly-spacing": [ "warn", "always" ], | ||
// "one-var": "off", | ||
// "operator-assignment": [ "warn", "never" ], | ||
// "operator-linebreak": [ "warn", "after" ], | ||
// "padded-blocks": [ "warn", "never" ], | ||
// "quote-props": [ "warn", "consistent-as-needed" ], | ||
// "quotes": [ "warn", "single" ], | ||
"require-jsdoc": [ "warn", { | ||
"require": { | ||
"FunctionDeclaration": true, | ||
"MethodDefinition": true, | ||
"ClassDeclaration": false | ||
} | ||
}], | ||
// "semi-spacing": [ "warn", { "before": false, "after": true }], | ||
// "semi": [ "error", "always" ], | ||
// "sort-vars": "off", | ||
"keyword-spacing": ["error", { "before": true, "after": true }] | ||
// "space-before-blocks": [ "warn", "always" ], | ||
// "space-before-function-paren": [ "warn", "never" ], | ||
// "space-in-parens": [ "warn", "never" ], | ||
// "space-infix-ops": [ "warn", { "int32Hint": true } ], | ||
// "space-return-throw-case": "error", | ||
// "space-unary-ops": "error", | ||
// "spaced-comment": [ "warn", "always" ], | ||
// "wrap-regex": "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 @@ | ||
dist/* linguist-vendored=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,15 @@ | ||
# These are supported funding model platforms | ||
|
||
github: [anuraghazra] # Replace with up to 4 GitHub Sponsors-enabled usernames e.g., [user1, user2] | ||
patreon: # Replace with a single Patreon username | ||
open_collective: # Replace with a single Open Collective username | ||
ko_fi: # Replace with a single Ko-fi username | ||
tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel | ||
community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry | ||
liberapay: # Replace with a single Liberapay username | ||
issuehunt: # Replace with a single IssueHunt username | ||
otechie: # Replace with a single Otechie username | ||
custom: [ | ||
"https://www.paypal.me/anuraghazra", | ||
"https://www.buymeacoffee.com/anuraghazra", | ||
] # Replace with up to 4 custom sponsorship URLs e.g., ['link1', 'link2'] |
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,60 @@ | ||
name: Bug report | ||
description: Create a report to help us improve. | ||
labels: | ||
- "bug" | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: | | ||
:warning: PLEASE FIRST READ THE FAQ [(#1770)](https://github.com/anuraghazra/github-readme-stats/discussions/1770) AND COMMON ERROR CODES [(#1772)](https://github.com/anuraghazra/github-readme-stats/issues/1772)!!! | ||
- type: textarea | ||
attributes: | ||
label: Describe the bug | ||
description: A clear and concise description of what the bug is. | ||
validations: | ||
required: true | ||
- type: textarea | ||
attributes: | ||
label: Expected behavior | ||
description: | ||
A clear and concise description of what you expected to happen. | ||
- type: textarea | ||
attributes: | ||
label: Screenshots / Live demo link | ||
description: If applicable, add screenshots to help explain your problem. | ||
placeholder: Paste the github-readme-stats link as markdown image | ||
- type: textarea | ||
attributes: | ||
label: Additional context | ||
description: Add any other context about the problem here. | ||
- type: markdown | ||
attributes: | ||
value: | | ||
--- | ||
### FAQ (Snippet) | ||
Below are some questions that are found in the FAQ. The full FAQ can be found in [#1770](https://github.com/anuraghazra/github-readme-stats/discussions/1770). | ||
#### Q: My card displays an error | ||
**Ans:** First, check the common error codes (i.e. https://github.com/anuraghazra/github-readme-stats/issues/1772) and existing issues before creating a new one. | ||
#### Q: How to hide jupyter Notebook? | ||
**Ans:** `&hide=jupyter%20notebook`. | ||
#### Q: I could not figure out how to deploy on my own vercel instance | ||
**Ans:** Please check: | ||
- Docs: https://github.com/anuraghazra/github-readme-stats/#deploy-on-your-own-vercel-instance | ||
- YT tutorial by codeSTACKr: https://www.youtube.com/watch?v=n6d4KHSKqGk&feature=youtu.be&t=107 | ||
#### Q: Language Card is incorrect | ||
**Ans:** Please read these issues/comments before opening any issues regarding language card stats: | ||
- https://github.com/anuraghazra/github-readme-stats/issues/136#issuecomment-665164174 | ||
- https://github.com/anuraghazra/github-readme-stats/issues/136#issuecomment-665172181 | ||
#### Q: How to count private stats? | ||
**Ans:** We can only count private commits & we cannot access any other private info of any users, so it's impossible. The only way is to deploy on your own instance & use your own PAT (Personal Access Token). |
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,12 @@ | ||
blank_issues_enabled: true | ||
contact_links: | ||
- name: Question | ||
url: https://github.com/anuraghazra/github-readme-stats/discussions | ||
about: Please ask and answer questions here. | ||
- name: Error | ||
url: https://github.com/anuraghazra/github-readme-stats/issues/1772 | ||
about: | ||
Before opening a bug report, please check the 'Common Error Codes' issue. | ||
- name: FAQ | ||
url: https://github.com/anuraghazra/github-readme-stats/discussions/1770 | ||
about: Please first check the FAQ before asking a question. |
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,28 @@ | ||
name: Feature request | ||
description: Suggest an idea for this project. | ||
labels: | ||
- "enhancement" | ||
body: | ||
- type: textarea | ||
attributes: | ||
label: Is your feature request related to a problem? Please describe. | ||
description: | ||
A clear and concise description of what the problem is. Ex. I'm always | ||
frustrated when [...] | ||
validations: | ||
required: true | ||
- type: textarea | ||
attributes: | ||
label: Describe the solution you'd like | ||
description: A clear and concise description of what you want to happen. | ||
- type: textarea | ||
attributes: | ||
label: Describe alternatives you've considered | ||
description: | ||
A clear and concise description of any alternative solutions or features | ||
you've considered. | ||
- type: textarea | ||
attributes: | ||
label: Additional context | ||
description: | ||
Add any other context or screenshots about the feature request here. |
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,25 @@ | ||
version: 2 | ||
updates: | ||
# Maintain dependencies for NPM | ||
- package-ecosystem: npm | ||
directory: "/" | ||
schedule: | ||
interval: weekly | ||
open-pull-requests-limit: 10 | ||
commit-message: | ||
prefix: "build(deps)" | ||
prefix-development: "build(deps-dev)" | ||
reviewers: | ||
- "qwerty541" | ||
|
||
# Maintain dependencies for GitHub Actions | ||
- package-ecosystem: github-actions | ||
directory: "/" | ||
schedule: | ||
interval: weekly | ||
open-pull-requests-limit: 10 | ||
commit-message: | ||
prefix: "ci(deps)" | ||
prefix-development: "ci(deps-dev)" | ||
reviewers: | ||
- "qwerty541" |
Oops, something went wrong.