Skip to content

Commit

Permalink
add dict-string-keys rule
Browse files Browse the repository at this point in the history
enforces that the keys of the object passed into `dict` has to be
strings and should be quoted.
  • Loading branch information
erwinmombay committed Jun 23, 2017
1 parent e58bd2d commit 0378cae
Show file tree
Hide file tree
Showing 3 changed files with 44 additions and 1 deletion.
1 change: 1 addition & 0 deletions .eslintrc
Expand Up @@ -38,6 +38,7 @@
"comma-dangle": [2, "always-multiline"],
"computed-property-spacing": [2, "never"],
"curly": 2,
"dict-string-keys": 2,
"dot-location": [2, "property"],
"enforce-private-props": 2,
"todo-format": 0,
Expand Down
42 changes: 42 additions & 0 deletions build-system/eslint-rules/dict-string-keys.js
@@ -0,0 +1,42 @@
/**
* Copyright 2017 The AMP HTML Authors. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS-IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
'use strict';

module.exports = function(context) {
return {
CallExpression: function(node) {
if (node.callee.name === 'dict') {
if (node.arguments[0]) {
var arg1 = node.arguments[0];
if (arg1.type !== 'ObjectExpression') {
context.report(node,
'calls to `dict` must have an Object Literal Expression as ' +
'the first argument');
return;
}

arg1.properties.forEach(function(prop) {
if (!prop.key.raw) {
context.report(node, 'Found: ' + prop.key.name + '. The keys ' +
'of the Object Literal Expression passed into `dict` must ' +
'have string keys');
}
});
}
}
}
};
};
2 changes: 1 addition & 1 deletion extensions/amp-a4a/0.1/amp-a4a.js
Expand Up @@ -1449,7 +1449,7 @@ export class AmpA4A extends AMP.BaseElement {
name = `${this.safeframeVersion_};${creative.length};${creative}` +
`${contextMetadata}`;
}
return this.iframeRenderHelper_(dict({'src': srcPath, name}));
return this.iframeRenderHelper_(dict({'src': srcPath, 'name': name}));
});
}

Expand Down

0 comments on commit 0378cae

Please sign in to comment.