This works:
ESLINT_USE_FLAT_CONFIG=false node_modules/.bin/eslint \
--plugin '@typescript-eslint' \
--parser '@typescript-eslint/parser' \
--parser-options '{"project":"packages/awesome-helpers/tsconfig.json"}' \
--rule '{"@typescript-eslint/consistent-type-exports": "error"}' \
--no-eslintrc \
--no-cache \
"packages/awesome-helpers/src/**/*.ts"
This does not work:
ESLINT_USE_FLAT_CONFIG=true node_modules/.bin/eslint \
--plugin '@typescript-eslint' \
--parser '@typescript-eslint/parser' \
--parser-options '{"project":"packages/awesome-helpers/tsconfig.json"}' \
--rule '{"@typescript-eslint/consistent-type-exports": "error"}' \
--no-config-lookup \
--no-cache \
"packages/awesome-helpers/src/**/*.ts"