chore(lint): Disable ESLint 'no-shadow' and 'no-warning-comments' rules

This commit is contained in:
Peter deHaan 2016-03-10 14:38:17 -08:00
Родитель a1bf706ec8
Коммит 4c637d266c
1 изменённых файлов: 3 добавлений и 3 удалений

Просмотреть файл

@ -53,15 +53,15 @@
"no-invalid-this": 0,
"no-magic-numbers": 0,
"no-negated-condition": 0,
"no-shadow": 1, // TODO: Remove this?
"no-shadow": 0, // TODO: Change to `1`?
"no-trailing-spaces": [2, {"skipBlankLines": false}],
"no-undef": 2,
"no-underscore-dangle": 0,
"no-unused-vars": [2, {"vars": "all", "args": "none"}],
"no-warning-comments": 1,
"no-warning-comments": 0, // TODO: Change to `1`?
"object-curly-spacing": [2, "never"],
"no-var": 2,
"prefer-const": 0, // TODO: Change to `1`.
"prefer-const": 0, // TODO: Change to `1`?
"prefer-reflect": 0,
"quotes": [2, "double", "avoid-escape"],
"semi": [2, "always"],