Este documento descreve as práticas de segurança adotadas no projeto para proteger APIs, dados sensíveis, autenticação e fluxos internos. As diretrizes abaixo devem ser seguidas em 100% do código antes de ser aprovado via Pull Request.
This file contains hidden or 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
| pnpm -s lint-staged |
This file contains hidden or 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
| const HOSTNAME = process.env.HOSTNAME || 'localhost'; | |
| /** | |
| * Retona logs de acordo com o estado ou efeito colateral da ação. | |
| * @param APP_NAME | |
| * @param severity | |
| * @param message | |
| * @param data | |
| */ | |
| export default function log(APP_NAME: string, severity: 'INFO' | 'WARNING' | 'ERROR', message: string, data?: Record<string, unknown>) { |
This file contains hidden or 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
| /** | |
| * huffman.c | |
| * Um simples compressor de arquivos usando árvores de Huffman. | |
| * @ver 0.1 | |
| * @autores: Fabrício Soares | |
| */ | |
| #include <stdio.h> | |
| #include <stdlib.h> | |
| #include <time.h> |