Skip to content

Commit

Permalink
Require Dot Notation Whenever Possible (dot-notation)
Browse files Browse the repository at this point in the history
Fixes: #1344
  • Loading branch information
feross committed Jul 28, 2019
1 parent 33f3c35 commit 5e3161b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
"rules": {
"quotes": ["error", "single", { "avoidEscape": true }],
"no-self-assign": ["error", { "props": true }],
"import/no-absolute-path": ["error", { "esmodule": true, "commonjs": true, "amd": false }]
"import/no-absolute-path": ["error", { "esmodule": true, "commonjs": true, "amd": false }],
"dot-notation": ["error", { "allowKeywords": true }]
}
}

0 comments on commit 5e3161b

Please sign in to comment.