mirror of
https://github.com/10h30/odin-javascript-exercises.git
synced 2026-07-18 14:13:24 +09:00
remove timer and simon
This commit is contained in:
+37
@@ -0,0 +1,37 @@
|
||||
/**
|
||||
* @fileoverview Warn when using template string syntax in regular strings
|
||||
* @author Jeroen Engels
|
||||
*/
|
||||
"use strict";
|
||||
|
||||
//------------------------------------------------------------------------------
|
||||
// Rule Definition
|
||||
//------------------------------------------------------------------------------
|
||||
|
||||
module.exports = {
|
||||
meta: {
|
||||
docs: {
|
||||
description: "disallow template literal placeholder syntax in regular strings",
|
||||
category: "Possible Errors",
|
||||
recommended: false
|
||||
},
|
||||
|
||||
schema: []
|
||||
},
|
||||
|
||||
create(context) {
|
||||
const regex = /\$\{[^}]+\}/;
|
||||
|
||||
return {
|
||||
Literal(node) {
|
||||
if (typeof node.value === "string" && regex.test(node.value)) {
|
||||
context.report({
|
||||
node,
|
||||
message: "Unexpected template string expression."
|
||||
});
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
}
|
||||
};
|
||||
Reference in New Issue
Block a user