Skip to content

Commit 5930155

Browse files
committed
updated
0 parents  commit 5930155

64 files changed

Lines changed: 25538 additions & 0 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.babelrc.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"presets": ["@babel/preset-env"]
3+
}

.eslintignore

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
node_modules
2+
test
3+
dist
4+
build
5+
.truecallerjs/authkey.json

.eslintrc.json

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
{
2+
"env": {
3+
"browser": true,
4+
"es2021": true
5+
},
6+
"extends": ["eslint:recommended", "plugin:@typescript-eslint/recommended"],
7+
"parser": "@typescript-eslint/parser",
8+
"parserOptions": {
9+
"ecmaVersion": "latest",
10+
"sourceType": "module"
11+
},
12+
"plugins": ["@typescript-eslint"],
13+
"rules": {}
14+
}

.github/FUNDING.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# These are supported funding model platforms
2+
3+
github: sumithemmadi
4+
patreon: # Replace with a single Patreon username
5+
open_collective: # Replace with a single Open Collective username
6+
ko_fi: # Replace with a single Ko-fi username
7+
tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel
8+
community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry
9+
# liberapay: sumithemmadi
10+
# issuehunt: sumithemmadi
11+
otechie: # Replace with a single Otechie username
12+
custom: ["https://paypal.me/sumithemmadi"]

.gitignore

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
node_modules/
2+
.truecallerjs/authkey.json
3+
coverage
4+
test/authkey.json
5+
test/request.json

.gitkeep

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
src/
2+
test/
3+
docs/
4+
dist/

.npmignore

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
docs/
2+
3+
# Ignore source files
4+
src/
5+
6+
# Ignore development and configuration files
7+
node_modules/
8+
coverage/
9+
CODE_OF_CONDUCT.md
10+
SECURITY.md
11+
test/
12+
.git
13+
.gitkeep
14+
.github
15+
.eslint*
16+
.prettier*
17+
18+
jest.config.ts
19+
20+

.prettierignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
*.md
2+
build
3+
dist
4+
node_modules

.prettierrc.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
{}

CODE_OF_CONDUCT.md

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
# Code of Conduct for https://github.com/sumithemmadi/truecallerjs
2+
3+
## Our Pledge
4+
5+
We, as members, contributors, and maintainers of this repository, pledge to foster an open, inclusive, and respectful environment for everyone who engages with our project. We are dedicated to providing a harassment-free experience, regardless of age, body size, visible or invisible disability, ethnicity, sex characteristics, gender identity and expression, level of experience, education, socio-economic status, nationality, personal appearance, race, religion, or sexual identity and orientation.
6+
7+
## Our Standards
8+
9+
Examples of behavior that contributes to a positive environment include:
10+
11+
- Being respectful and considerate towards others.
12+
- Encouraging and supporting each other's ideas and contributions.
13+
- Providing and receiving constructive feedback with grace and openness.
14+
- Being empathetic and understanding towards differing perspectives.
15+
16+
Examples of unacceptable behavior include:
17+
18+
- Use of offensive, derogatory, or inappropriate language.
19+
- Harassment, trolling, or any form of personal attacks.
20+
- Publishing private information without explicit permission.
21+
- Engaging in any behavior that could be considered inappropriate or harmful.
22+
23+
## Responsibilities
24+
25+
Project maintainers are responsible for upholding the standards of conduct within the repository. They have the right and duty to remove, edit, or reject comments, code, and other contributions that violate this Code of Conduct.
26+
27+
## Scope
28+
29+
This Code of Conduct applies to all interactions within the repository, as well as to any public representation of the project. This includes comments, issues, pull requests, code reviews, and any other communication.
30+
31+
## Enforcement
32+
33+
Instances of abusive, harassing, or otherwise unacceptable behavior may be reported by contacting the project team at [Your Contact Email]. All complaints will be reviewed promptly and treated with confidentiality and respect. Project maintainers are obligated to respect the privacy and security of the reporter of any incident.
34+
35+
## Consequences
36+
37+
Anyone found to be violating this Code of Conduct may face consequences, which can include:
38+
39+
1. **Warning**: A private, written warning from the project maintainers.
40+
2. **Temporary Ban**: A temporary ban from participating in the repository.
41+
3. **Permanent Ban**: A permanent ban from the repository and its related activities.
42+
43+
Project maintainers will use their discretion in determining the appropriate consequences for each case, considering the severity and impact of the violation.

0 commit comments

Comments
 (0)