mirror of
https://github.com/nodejs/node.git
synced 2024-11-21 10:59:27 +00:00
2eff28fb7a
Greatly simplify how ESLint and its plugins are installed. PR-URL: https://github.com/nodejs/node/pull/53413 Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
64 lines
1.6 KiB
JavaScript
64 lines
1.6 KiB
JavaScript
'use strict';
|
|
|
|
const common = require('../common');
|
|
if ((!common.hasCrypto) || (!common.hasIntl)) {
|
|
common.skip('ESLint tests require crypto and Intl');
|
|
}
|
|
common.skipIfEslintMissing();
|
|
|
|
const RuleTester = require('../../tools/eslint/node_modules/eslint').RuleTester;
|
|
const rule = require('../../tools/eslint-rules/alphabetize-errors');
|
|
|
|
new RuleTester().run('alphabetize-errors', rule, {
|
|
valid: [
|
|
{ code: `
|
|
E('AAA', 'foo');
|
|
E('BBB', 'bar');
|
|
E('CCC', 'baz');
|
|
`, options: [{ checkErrorDeclarations: true }] },
|
|
`
|
|
E('AAA', 'foo');
|
|
E('CCC', 'baz');
|
|
E('BBB', 'bar');
|
|
`,
|
|
`const {
|
|
codes: {
|
|
ERR_A,
|
|
ERR_B,
|
|
},
|
|
} = require("internal/errors")`,
|
|
],
|
|
invalid: [
|
|
{
|
|
code: `
|
|
E('BBB', 'bar');
|
|
E('AAA', 'foo');
|
|
E('CCC', 'baz');
|
|
`,
|
|
options: [{ checkErrorDeclarations: true }],
|
|
errors: [{ message: 'Out of ASCIIbetical order - BBB >= AAA', line: 3 }]
|
|
},
|
|
{
|
|
code: `const {
|
|
codes: {
|
|
ERR_B,
|
|
ERR_A,
|
|
},
|
|
} = require("internal/errors")`,
|
|
errors: [{ message: 'Out of ASCIIbetical order - ERR_B >= ERR_A', line: 4 }]
|
|
},
|
|
{
|
|
code: 'const internalErrors = require("internal/errors")',
|
|
errors: [{ message: /Use destructuring/ }]
|
|
},
|
|
{
|
|
code: 'const {codes} = require("internal/errors")',
|
|
errors: [{ message: /Use destructuring/ }]
|
|
},
|
|
{
|
|
code: 'const {codes:{ERR_A}} = require("internal/errors")',
|
|
errors: [{ message: /Use multiline destructuring/ }]
|
|
},
|
|
]
|
|
});
|