mirror of
https://github.com/streamich/react-use.git
synced 2026-02-01 14:37:31 +00:00
23 lines
480 B
JavaScript
23 lines
480 B
JavaScript
module.exports = {
|
|
extends: ['react-app', 'prettier'],
|
|
plugins: ['prettier'],
|
|
rules: {
|
|
'prettier/prettier': [
|
|
'error',
|
|
{
|
|
singleQuote: true,
|
|
trailingComma: 'es5',
|
|
tabWidth: 2,
|
|
printWidth: 100,
|
|
semicolons: true,
|
|
quoteProps: 'as-needed',
|
|
jsxSingleQuote: false,
|
|
bracketSpacing: true,
|
|
jsxBracketSameLine: true,
|
|
arrowParens: 'always',
|
|
endOfLine: 'lf',
|
|
},
|
|
],
|
|
},
|
|
};
|