Skip to main content
Module

x/flowed/.eslintrc.js

A fast and reliable flow engine for orchestration and more uses in Node.js, Deno and the browser
Latest
File
module.exports = { root: true, parser: '@typescript-eslint/parser', plugins: ['eslint-plugin', '@typescript-eslint', 'mocha', 'prettier'], env: { es6: true, node: true, mocha: true, }, extends: [ 'eslint:recommended', 'plugin:@typescript-eslint/recommended', 'prettier', ], rules: { '@typescript-eslint/no-var-requires': 'off', '@typescript-eslint/interface-name-prefix': 'off', '@typescript-eslint/no-empty-function': 'off', '@typescript-eslint/no-unused-vars': ['warn', { argsIgnorePattern: '^_'}], eqeqeq: 1, quotes: ['error', 'single', { avoidEscape: true }], },};