chrome-devtools-frontend
Version:
Chrome DevTools UI
20 lines (18 loc) • 714 B
JavaScript
// Copyright 2020 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.
module.exports = {
overrides: [{
'files': ['*.ts'],
'rules': {
// This makes the component doc examples very verbose and doesn't add
// anything, so we leave return types to the developer within the
// component_docs folder.
'@typescript-eslint/explicit-function-return-type': 0,
'rulesdir/ban_style_tags_in_lit_html': 0,
// We use LitHtml to help render examples sometimes and we don't use
// {host: this} as often the `this` is the window.
'rulesdir/lit_html_host_this': 0,
}
}]
};