/**
* @fileoverview Rule to disallow a duplicate case label.
* @author Dieter Oberkofler
* @author Burak Yigit Kaya
*/
"use strict";
//------------------------------------------------------------------------------
// Rule Definition
//------------------------------------------------------------------------------
module.exports = {
meta: {
docs: {
description: "disallow duplicate case labels",
category: "Possible Errors",
recommended: true,
url: "https://eslint.org/docs/rules/no-duplicate-case"
},
schema: []
},
create(context) {
const sourceCode = context.getSourceCode();
return {
SwitchStatement(node) {
const mapping = {};
node.cases.forEach(switchCase => {
const key = sourceCode.getText(switchCase.test);
if (mapping[key]) {
context.report({ node: switchCase, message: "Duplicate case label." });
} else {
mapping[key] = switchCase;
}
});
}
};
}
};
# |
Change |
User |
Description |
Committed |
|
#1
|
23539 |
jenbottom |
Adding the basic code for ember test appk, created with 'ember new' command |
|
|