blob: 4a60ca1ee7cc8c8cbec7ca83da015fc2763e9e00 [file] [edit]
const gts = require('gts');
module.exports = [
...gts,
{
ignores: ['out/**', 'dist/**', 'build/**', 'node_modules/**', '.vscode-test/**']
},
{
linterOptions: {
reportUnusedDisableDirectives: 'error'
},
rules: {
// TODO(hxjiang): fix problem reported and enable all the rules below.
'@typescript-eslint/no-explicit-any': 'off'
}
}
];