⚝
One Hat Cyber Team
⚝
Your IP:
172.22.0.1
Server IP:
151.80.20.34
Server:
Linux 794f04d97d5e 5.15.0-143-generic #153-Ubuntu SMP Fri Jun 13 19:10:45 UTC 2025 x86_64
Server Software:
Apache/2.4.62 (Debian)
PHP Version:
8.2.28
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
usr
/
share
/
nodejs
/
eslint
/
lib
/
rules
/
View File Name :
no-tabs.js
/** * @fileoverview Rule to check for tabs inside a file * @author Gyandeep Singh */ "use strict"; //------------------------------------------------------------------------------ // Helpers //------------------------------------------------------------------------------ const tabRegex = /\t+/gu; const anyNonWhitespaceRegex = /\S/u; //------------------------------------------------------------------------------ // Public Interface //------------------------------------------------------------------------------ module.exports = { meta: { type: "layout", docs: { description: "disallow all tabs", category: "Stylistic Issues", recommended: false, url: "https://eslint.org/docs/rules/no-tabs" }, schema: [{ type: "object", properties: { allowIndentationTabs: { type: "boolean", default: false } }, additionalProperties: false }] }, create(context) { const sourceCode = context.getSourceCode(); const allowIndentationTabs = context.options && context.options[0] && context.options[0].allowIndentationTabs; return { Program(node) { sourceCode.getLines().forEach((line, index) => { let match; while ((match = tabRegex.exec(line)) !== null) { if (allowIndentationTabs && !anyNonWhitespaceRegex.test(line.slice(0, match.index))) { continue; } context.report({ node, loc: { line: index + 1, column: match.index }, message: "Unexpected tab character." }); } }); } }; } };