@profitsniper/telegram
Version:
While developing with Typescript and Node.js is awesome, **setting up a new project is painful**. This minimal and modern starter repo is here to help you get started with Node.js and Typecript without the pain.
13 lines (11 loc) • 322 B
JavaScript
const { sheriff } = require('eslint-config-sheriff');
const { defineFlatConfig } = require('eslint-define-config');
const sheriffOptions = {
"react": false,
"lodash": false,
"next": false,
"playwright": false,
"jest": false,
"vitest": false
};
module.exports = defineFlatConfig([...sheriff(sheriffOptions)]);