react-native-windows/packages/@react-native-windows/automation/.eslintrc.js

17 строки
356 B
JavaScript

module.exports = {
extends: ['@rnw-scripts'],
parserOptions: {tsconfigRootDir : __dirname},
// Workaround "export type" being unsupported with prettier 1.x
ignorePatterns: ['index.ts'],
overrides: [
{
files: ['*.ts'],
// Also not clean
rules: {
'@typescript-eslint/no-unused-vars': 'off',
},
},
],
};