@porosys/ndtool
Version:
Netdata alert and automation tool
27 lines (21 loc) • 454 B
JavaScript
require('@porosys/eslint-config/patch');
module.exports = {
extends: ['@porosys/eslint-config'],
parserOptions: {
project: ['./tsconfig.json'],
},
settings: {
'import/resolver': {
node: {
paths: ['./lib'],
extensions: ['.js', '.jsx', '.ts', '.tsx'],
},
},
},
ignorePatterns: ['ext.js'],
rules: {
'no-console': 'off',
'no-restricted-syntax': 'off',
'no-await-in-loop': 'off',
},
};