Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
7 changes: 4 additions & 3 deletions .eslintrc.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -51,19 +51,20 @@ module.exports = {
files: ['specs/**/*.yml'],
rules: {
'automation-custom/end-with-dot': 'error',
'automation-custom/no-big-int': 'error',
'automation-custom/no-final-dot': 'error',
'automation-custom/single-quote-ref': 'error',
},
overrides: [
{
files: ['!specs/bundled/*.yml'],
rules: {
'automation-custom/out-of-line-enum': 'error',
'automation-custom/out-of-line-one-of': 'error',
'automation-custom/out-of-line-all-of': 'error',
'automation-custom/out-of-line-any-of': 'error',
'automation-custom/valid-acl': 'error',
'automation-custom/out-of-line-enum': 'error',
'automation-custom/out-of-line-one-of': 'error',
'automation-custom/ref-common': 'error',
'automation-custom/valid-acl': 'error',
'automation-custom/valid-inline-title': 'error',
},
},
Expand Down
10 changes: 6 additions & 4 deletions eslint/src/index.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import { endWithDot } from './rules/endWithDot.js';
import { noBigInt } from './rules/noBigInt.js';
import { noFinalDot } from './rules/noFinalDot.js';
import { noNewLine } from './rules/noNewLine.js';
import { createOutOfLineRule } from './rules/outOfLineRule.js';
Expand All @@ -9,15 +10,16 @@ import { validInlineTitle } from './rules/validInlineTitle.js';

const rules = {
'end-with-dot': endWithDot,
'no-big-int': noBigInt,
'no-final-dot': noFinalDot,
'out-of-line-enum': createOutOfLineRule({ property: 'enum' }),
'out-of-line-one-of': createOutOfLineRule({ property: 'oneOf' }),
'no-new-line': noNewLine,
'out-of-line-all-of': createOutOfLineRule({ property: 'allOf' }),
'out-of-line-any-of': createOutOfLineRule({ property: 'anyOf' }),
'out-of-line-enum': createOutOfLineRule({ property: 'enum' }),
'out-of-line-one-of': createOutOfLineRule({ property: 'oneOf' }),
'ref-common': refCommon,
'single-quote-ref': singleQuoteRef,
'valid-acl': validACL,
'no-new-line': noNewLine,
'ref-common': refCommon,
'valid-inline-title': validInlineTitle,
};

Expand Down
47 changes: 47 additions & 0 deletions eslint/src/rules/noBigInt.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
import { createRule } from 'eslint-plugin-yml/lib/utils';

import { isPairWithKey, isScalar } from '../utils.js';

// type: number with format: int64 will generate a BigInteger which is not nice to use, most of the time we only need int, long, float or double.
export const noBigInt = createRule('noBigInt', {
meta: {
docs: {
description: 'type big integer is forbidden, did you mean long ?',
categories: null,
extensionRule: false,
layout: false,
},
messages: {
noBigInt: 'type bigInt is forbidden',
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

should it recommend the solution? not as an automated fix but at least a clear alternative

},
type: 'layout',
schema: [],
},
create(context) {
if (!context.getSourceCode().parserServices.isYAML) {
return {};
}

return {
YAMLPair(node): void {
if (!isPairWithKey(node, 'type')) {
return;
}

if (!isScalar(node.value) || node.value.value !== 'number') {
return;
}

// check the format next to the type
node.parent.pairs.find((pair) => {
if (isPairWithKey(pair, 'format') && isScalar(pair.value) && (pair.value.value === 'int32' || pair.value.value === 'int64')) {
context.report({
node: pair.value as any,
messageId: 'noBigInt',
});
}
});
},
};
},
});
51 changes: 51 additions & 0 deletions eslint/tests/noBigInt.test.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
import { runClassic } from 'eslint-vitest-rule-tester';
import yamlParser from 'yaml-eslint-parser';
import { noBigInt } from '../src/rules/noBigInt.js';


runClassic(
'no-big-int',
noBigInt,
{
valid: [`
type: object
properties:
id:
type: number
format: float
url:
type: string
format: uri
`, `
prop:
type: integer
format: int32
`],
invalid: [
{
code: `
type: object
properties:
id:
type: number
format: int64
url:
type: string
format: uri
`,
errors: [{ messageId: 'noBigInt' }],
},
{
code: `
prop:
type: number
format: int32
`,
errors: [{ messageId: 'noBigInt' }],
},
],
},
{
parser: yamlParser,
},
);
Loading