fix: small fixes and release prep

This commit is contained in:
Taranto 2020-12-24 13:29:32 +00:00 committed by Josh Harvey
parent 5823485ab7
commit 0ad1ba2f77
20 changed files with 195 additions and 164 deletions

View file

@ -1,24 +1,29 @@
module.exports = {
extends: [
'react-app',
'prettier-standard',
'prettier/react',
],
extends: ['react-app', 'prettier-standard', 'prettier/react'],
plugins: ['import'],
settings: {
'import/resolver': {
alias: [
['src', './src']
]
alias: [['src', './src']]
}
},
rules: {
'import/order': ['error', {
groups: ['builtin', 'external', 'internal', 'parent', 'sibling', 'index'],
alphabetize: {
order: 'asc'
},
'newlines-between': 'always',
}]
}
'import/no-anonymous-default-export': [2, { allowObject: true }],
'import/order': [
'error',
{
groups: [
'builtin',
'external',
'internal',
'parent',
'sibling',
'index'
],
alphabetize: {
order: 'asc'
},
'newlines-between': 'always'
}
]
}
}