Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add check to use periods at the end of error messages #88

Merged
merged 4 commits into from
Apr 9, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions eslint-plugin-expensify/CONST.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,5 +28,6 @@ module.exports = {
MUST_USE_VARIABLE_FOR_ASSIGNMENT: '{{key}} must be assigned as a variable instead of direct assignment.',
NO_DEFAULT_PROPS: 'defaultProps should not be used in function components. Use default Arguments instead.',
AVOID_ANONYMOUS_FUNCTIONS: 'Prefer named functions.',
USE_PERIODS_ERROR_MESSAGES: 'Use periods at the end of error messages.',
},
};
38 changes: 38 additions & 0 deletions eslint-plugin-expensify/tests/use-periods-error-messages.test.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
const RuleTester = require('eslint').RuleTester;
const rule = require('../use-periods-for-error-messages');
const message = require('../CONST').MESSAGE.USE_PERIODS_ERROR_MESSAGES;

const ruleTester = new RuleTester({
parserOptions: {
ecmaVersion: 6,
sourceType: 'module',
},
});

const goodExample = `
error: {
testMessage: 'This is a test message.'
}
`;

const badExample = `
error: {
testMessage: 'This is a test message'
}
`;

ruleTester.run('use-periods-for-error-messages', rule, {
valid: [
{
code: goodExample,
},
],
invalid: [
{
code: badExample,
errors: [{
message,
}],
},
],
});
30 changes: 30 additions & 0 deletions eslint-plugin-expensify/use-periods-for-error-messages.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
require('lodash/get');
const message = require('./CONST').MESSAGE.USE_PERIODS_ERROR_MESSAGES;

module.exports = {
create(context) {
return {
Property(node) {
if (!node.key || node.key.name !== 'error' || !node.value || node.value.type !== 'ObjectExpression') {
return;
}
node.value.properties.forEach((property) => {
if (!property.value || property.value.type !== 'Literal' || typeof property.value.value !== 'string') {
return;
}
const errorMessage = property.value.value;
if (!errorMessage.endsWith('.')) {
context.report({
node: property,
message,
fix: function (fixer) {
const fixedMessage = `${errorMessage}.`;
return fixer.replaceText(property.value, `'${fixedMessage}'`);
}
});
}
});
},
};
},
};