Fundamentals
Linting
Ban usage of process.env
In order to ensure good practices when handling secrets, Fatima provides a linter plugin that bans the usage of process.env in your codebase.
ESlint
import { linter as fatima } from "fatima";
export default [
fatima.eslint.plugin,
]Biome
{
"plugins": [
"node_modules/fatima/dist/biome.grit"
]
}