Files
trackgo-fe/packages/utils/.eslintrc.cjs
T
Firman Ramdhani ed949e4174 feat: add encryption and date service utilities
- Implemented EncryptionService for secure data handling with AES encryption.
- Created DateService for advanced date manipulation and formatting.
- Developed EncryptionDemo and DateServiceComponent for interactive demonstrations.
- Added LocalStorage demo for encrypted data storage and retrieval.
- Established ESLint and TypeScript configurations for utils package.
- Included example utility function for demonstration purposes.
2026-01-09 16:50:25 +07:00

11 lines
246 B
JavaScript

/** @type {import("eslint").Linter.Config} */
module.exports = {
root: true,
ignorePatterns: ['.eslintrc.cjs'],
extends: ['@repo/eslint-config/index.js'],
parser: '@typescript-eslint/parser',
parserOptions: {
project: true,
},
};