source: frontend/node_modules/@rushstack/eslint-patch/eslint.config.js@ 9af201e

Last change on this file since 9af201e was 9af201e, checked in by MBK <marija.karapandzova@…>, 11 days ago

Fix frontend appearance

  • Property mode set to 100644
File size: 799 bytes
Line 
1// Copyright (c) Microsoft Corporation. All rights reserved. Licensed under the MIT license.
2// See LICENSE in the project root for license information.
3
4const nodeTrustedToolProfile = require('decoupled-local-node-rig/profiles/default/includes/eslint/flat/profile/node-trusted-tool');
5const friendlyLocalsMixin = require('decoupled-local-node-rig/profiles/default/includes/eslint/flat/mixins/friendly-locals');
6const tsdocMixin = require('decoupled-local-node-rig/profiles/default/includes/eslint/flat/mixins/tsdoc');
7
8module.exports = [
9 ...nodeTrustedToolProfile,
10 ...friendlyLocalsMixin,
11 ...tsdocMixin,
12 {
13 files: ['**/*.ts', '**/*.tsx'],
14 languageOptions: {
15 parserOptions: {
16 tsconfigRootDir: __dirname
17 }
18 },
19 rules: {
20 'no-console': 'off'
21 }
22 }
23];
Note: See TracBrowser for help on using the repository browser.