chromium/tools/typescript/definitions/.eslintrc.js

// Copyright 2024 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

module.exports = {
  'rules' : {
    // Turn off since files in this folder are autogenerated, and the
    // tool does not always generate names in line with naming convention.
    '@typescript-eslint/naming-convention': 'off',

    // Turn off since files in this folder are autogenerated and do not
    // exist at runtime.
    '@typescript-eslint/consistent-type-imports': 'off',
  },
};