We need to add a linter to the i18n package, we are mainly interested by the jest linting rules so we create a jest eslint config pluggable our other configs and to the i18n eslint config.
8 lines
114 B
JavaScript
8 lines
114 B
JavaScript
module.exports = {
|
|
semi: true,
|
|
trailingComma: 'all',
|
|
singleQuote: true,
|
|
printWidth: 80,
|
|
tabWidth: 2,
|
|
};
|