summaryrefslogtreecommitdiff
path: root/tools/node_modules/eslint/lib/rules/dot-notation.js
diff options
context:
space:
mode:
Diffstat (limited to 'tools/node_modules/eslint/lib/rules/dot-notation.js')
-rw-r--r--tools/node_modules/eslint/lib/rules/dot-notation.js8
1 files changed, 5 insertions, 3 deletions
diff --git a/tools/node_modules/eslint/lib/rules/dot-notation.js b/tools/node_modules/eslint/lib/rules/dot-notation.js
index 55ccea4ce3..a1b091da0e 100644
--- a/tools/node_modules/eslint/lib/rules/dot-notation.js
+++ b/tools/node_modules/eslint/lib/rules/dot-notation.js
@@ -33,10 +33,12 @@ module.exports = {
type: "object",
properties: {
allowKeywords: {
- type: "boolean"
+ type: "boolean",
+ default: true
},
allowPattern: {
- type: "string"
+ type: "string",
+ default: ""
}
},
additionalProperties: false
@@ -53,7 +55,7 @@ module.exports = {
create(context) {
const options = context.options[0] || {};
- const allowKeywords = options.allowKeywords === void 0 || !!options.allowKeywords;
+ const allowKeywords = options.allowKeywords === void 0 || options.allowKeywords;
const sourceCode = context.getSourceCode();
let allowPattern;