blob: 79d7854823b17ea077c30a48aa967e243a5cab66 [file] [log] [blame]
// Copyright 2023 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
const path = require('path');
const rulesDirPlugin = require('eslint-plugin-rulesdir');
rulesDirPlugin.RULES_DIR = path.join(__dirname, '..', '..', 'scripts', 'eslint_rules', 'lib');
module.exports = {
'rules' : {
'rulesdir/es_modules_import' : 'off',
}
};