You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
41 lines
966 B
JavaScript
41 lines
966 B
JavaScript
/*
|
|
* Copyright (C) 2019 Intel Corporation
|
|
* SPDX-License-Identifier: MIT
|
|
*/
|
|
|
|
module.exports = {
|
|
'env': {
|
|
'node': true,
|
|
'browser': true,
|
|
'es6': true,
|
|
},
|
|
'parserOptions': {
|
|
'parser': '@typescript-eslint/parser',
|
|
'ecmaVersion': 6,
|
|
},
|
|
'plugins': [
|
|
'@typescript-eslint',
|
|
'import',
|
|
],
|
|
'extends': [
|
|
'plugin:@typescript-eslint/recommended',
|
|
'airbnb-typescript/base',
|
|
'plugin:import/errors',
|
|
'plugin:import/warnings',
|
|
'plugin:import/typescript',
|
|
],
|
|
'rules': {
|
|
'@typescript-eslint/indent': ['warn', 4],
|
|
'@typescript-eslint/no-explicit-any': [0],
|
|
'no-restricted-syntax': [0, {'selector': 'ForOfStatement'}],
|
|
'no-plusplus': [0],
|
|
},
|
|
'settings': {
|
|
'import/resolver': {
|
|
'node': {
|
|
'extensions': ['.tsx', '.ts', '.jsx', '.js', '.json'],
|
|
},
|
|
},
|
|
},
|
|
};
|