Files
react-native-hold-menu/.eslintrc.js
2021-02-07 21:08:10 +03:00

19 lines
385 B
JavaScript

module.exports = {
root: true,
extends: ['@react-native-community', 'prettier'],
rules: {
'no-console': ['error', { allow: ['warn', 'error'] }],
'prettier/prettier': [
'error',
{
printWidth: 80,
arrowParens: 'avoid',
singleQuote: true,
tabWidth: 2,
trailingComma: 'es5',
useTabs: false,
},
],
},
};