@quintaaa/eslint-plugin-starlims
Version:
Eslint plugin to parse and lint starlims form code successfully
24 lines (22 loc) • 648 B
JavaScript
// The plugins are not yet migrated to eslint 9.0.0
// const mocha = require('eslint-plugin-mocha');
// const node = require('eslint-plugin-node');
module.exports = [
// node.configs.recommended,
// mocha.configs.recommended,
{
// plugins: {
// mocha,
// },
rules: {
'node/no-unpublished-require': 'off',
// 'mocha/no-mocha-arrows': 'off',
quotes: [
'warn',
'single',
{ avoidEscape: true, allowTemplateLiterals: true },
],
'dot-notation': 'warn',
},
},
];