* Initialize a new NX project - QR campaign * Develop QR code generator app for campaign * Add deployment script Add Dockerfile, docker compose, and update Nix config for deployment * Revert package.json to fix ci * Revert package-lock.json to ensure ci (Nix build & cache) successful
13 lines
272 B
JavaScript
13 lines
272 B
JavaScript
import nx from '@nx/eslint-plugin';
|
|
import baseConfig from '../../eslint.config.mjs';
|
|
|
|
export default [
|
|
...baseConfig,
|
|
...nx.configs['flat/react'],
|
|
{
|
|
files: ['**/*.ts', '**/*.tsx', '**/*.js', '**/*.jsx'],
|
|
// Override or add rules here
|
|
rules: {},
|
|
},
|
|
];
|