mirror of
https://github.com/nodejs/node.git
synced 2024-11-21 21:19:50 +01: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>
34 lines
780 B
JavaScript
34 lines
780 B
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/no-unescaped-regexp-dot');
|
|
|
|
new RuleTester().run('no-unescaped-regexp-dot', rule, {
|
|
valid: [
|
|
'/foo/',
|
|
String.raw`/foo\./`,
|
|
'/.+/',
|
|
'/.*/',
|
|
'/.?/',
|
|
'/.{5}/',
|
|
String.raw`/\\\./`,
|
|
],
|
|
invalid: [
|
|
{
|
|
code: '/./',
|
|
errors: [{ message: 'Unescaped dot character in regular expression' }]
|
|
},
|
|
{
|
|
code: String.raw`/\\./`,
|
|
errors: [{ message: 'Unescaped dot character in regular expression' }]
|
|
},
|
|
]
|
|
});
|