mirror of
https://github.com/status-im/metro.git
synced 2025-01-10 02:55:46 +00:00
5e65dfcf81
Reviewed By: davidaurelio Differential Revision: D6519564 fbshipit-source-id: 0cd894e92dfde451f8ee69d6c7c3d4cbd73b83ea
27 lines
577 B
JavaScript
27 lines
577 B
JavaScript
/**
|
|
* Copyright 2004-present Facebook. All Rights Reserved.
|
|
*
|
|
* @format
|
|
*/
|
|
'use strict';
|
|
|
|
module.exports = {
|
|
env: {
|
|
node: true,
|
|
},
|
|
extends: 'eslint-config-fb-strict',
|
|
plugins: ['babel', 'flowtype', 'prettier'],
|
|
parser: 'babel-eslint',
|
|
rules: {
|
|
'extra-arrow-initializer': 'off',
|
|
'max-len': 'off',
|
|
'no-alert': 'off',
|
|
'no-console-disallow': 'off',
|
|
'no-var': 'off',
|
|
'prefer-arrow-callback': 'off',
|
|
'prefer-const': ['warn', {destructuring: 'all'}],
|
|
'prettier/prettier': ['error', 'fb', '@format'],
|
|
'sort-keys': 'off',
|
|
},
|
|
};
|