Alexandre Bodin 07e7cfc0bd Make lint stricter and fix the errors
Signed-off-by: Alexandre Bodin <bodin.alex@gmail.com>
2020-11-02 19:41:42 +01:00

10 lines
276 B
JavaScript

'use strict';
const checkFieldsAreCorrectlyNested = require('./check-fields-are-correctly-nested');
const checkFieldsDontHaveDuplicates = require('./check-fields-dont-have-duplicates');
module.exports = {
checkFieldsAreCorrectlyNested,
checkFieldsDontHaveDuplicates,
};