-
-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: Added SECURITY file & formatted some TypeScript code
- Loading branch information
Showing
3 changed files
with
44 additions
and
21 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,17 @@ | ||
# Security Policy | ||
|
||
## Supported Versions | ||
|
||
Project is currently in development and is not yet ready to be used. | ||
|
||
| Version | Supported | | ||
| ------- | ------------------ | | ||
| 0.1.0 @ dev | :white_check_mark: | | ||
|
||
## Reporting a Vulnerability | ||
|
||
You can report a vulnerability by opening an issue on the [project's GitHub](https://github.com/SernHandler/Sern/issues) repository. | ||
|
||
Please provide as much information as possible when reporting a vulnerability. We are looking for information for, the affected version, and the steps to reproduce the vulnerability. | ||
|
||
Be patient, we are working on fixing all reported vulnerabilities. |
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,21 +1,21 @@ | ||
{ | ||
"compilerOptions": { | ||
"experimentalDecorators": true, | ||
"resolveJsonModule": true, | ||
"target": "esnext", | ||
"module": "commonjs", | ||
"outDir": "dist", | ||
"rootDir": "src", | ||
"strict": true, | ||
"esModuleInterop": true, | ||
"noImplicitAny": true, | ||
"strictNullChecks": true, | ||
"importsNotUsedAsValues": "error", | ||
"skipLibCheck": true, | ||
"declaration": true, | ||
"forceConsistentCasingInFileNames": true, | ||
}, | ||
"exclude": ["node_modules", "tests", "dist"], | ||
"include": ["src"], | ||
} | ||
"compilerOptions": { | ||
"experimentalDecorators": true, | ||
"resolveJsonModule": true, | ||
"target": "esnext", | ||
"module": "commonjs", | ||
"outDir": "dist", | ||
"rootDir": "src", | ||
"strict": true, | ||
"esModuleInterop": true, | ||
"noImplicitAny": true, | ||
"strictNullChecks": true, | ||
"importsNotUsedAsValues": "error", | ||
"moduleResolution": "node", | ||
"skipLibCheck": true, | ||
"declaration": true, | ||
"forceConsistentCasingInFileNames": true, | ||
}, | ||
"exclude": ["node_modules", "tests", "dist"], | ||
"include": ["src"], | ||
} |