From 26a029d407be480d791972afb5975cf62c9360a6 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Fri, 19 Apr 2024 02:47:55 +0200 Subject: Adding upstream version 124.0.1. Signed-off-by: Daniel Baumann --- .../eslint-plugin-gpuweb-cts/tabs-anywhere.js | 29 ++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 dom/webgpu/tests/cts/checkout/tools/eslint-plugin-gpuweb-cts/tabs-anywhere.js (limited to 'dom/webgpu/tests/cts/checkout/tools/eslint-plugin-gpuweb-cts/tabs-anywhere.js') diff --git a/dom/webgpu/tests/cts/checkout/tools/eslint-plugin-gpuweb-cts/tabs-anywhere.js b/dom/webgpu/tests/cts/checkout/tools/eslint-plugin-gpuweb-cts/tabs-anywhere.js new file mode 100644 index 0000000000..82238f8615 --- /dev/null +++ b/dom/webgpu/tests/cts/checkout/tools/eslint-plugin-gpuweb-cts/tabs-anywhere.js @@ -0,0 +1,29 @@ +module.exports = { + meta: { + type: 'suggestion', + docs: { + description: 'Indentation tabs are not allowed, even in multiline strings, due to WPT lint rules. This rule simply disallows tabs anywhere.', + }, + schema: [], + }, + create: context => { + const sourceCode = context.getSourceCode(); + + return { + Program: node => { + for (let lineIdx = 0; lineIdx < sourceCode.lines.length; ++lineIdx) { + const line = sourceCode.lines[lineIdx]; + const matches = line.matchAll(/\t/g); + for (const match of matches) { + context.report({ + node, + loc: { line: lineIdx + 1, column: match.index }, + message: 'Tabs not allowed.', + // fixer is hard to implement, so not implemented. + }); + } + } + }, + }; + }, +}; -- cgit v1.2.3