e155d982e565a48a8ddce7a5284066c262ac6530
[platform/framework/web/crosswalk-tizen.git] /
1 /**
2  * @fileoverview Rule to flag use of unnecessary semicolons
3  * @author Nicholas C. Zakas
4  */
5
6 "use strict";
7
8 //------------------------------------------------------------------------------
9 // Rule Definition
10 //------------------------------------------------------------------------------
11
12 module.exports = function(context) {
13
14     return {
15
16         "EmptyStatement": function(node) {
17             context.report(node, "Unnecessary semicolon.");
18         }
19     };
20
21 };