eslint-plugin-unicorn
Version:
Various awesome ESLint rules
52 lines (44 loc) • 908 B
JavaScript
const getDocumentationUrl = require('./utils/get-documentation-url');
const MESSAGE_ID = 'number-literal-case';
const messages = {
[MESSAGE_ID]: 'Invalid number literal casing.'
};
const fix = raw => {
let fixed = raw.toLowerCase();
if (fixed.startsWith('0x')) {
fixed = '0x' + fixed.slice(2).toUpperCase();
}
return fixed;
};
const create = context => {
return {
Literal: node => {
const {value, raw, bigint} = node;
let fixed = raw;
if (typeof value === 'number') {
fixed = fix(raw);
} else if (bigint) {
fixed = fix(raw.slice(0, -1)) + 'n';
}
if (raw !== fixed) {
context.report({
node,
messageId: MESSAGE_ID,
fix: fixer => fixer.replaceText(node, fixed)
});
}
}
};
};
module.exports = {
create,
meta: {
type: 'suggestion',
docs: {
url: getDocumentationUrl(__filename)
},
fixable: 'code',
messages
}
};
;