[eslint config] [base] update eslint, babel-preset-airbnb

This commit is contained in:
Jordan Harband
2017-02-05 10:28:13 -08:00
parent 4d024be5a4
commit a8d2f94884
2 changed files with 8 additions and 3 deletions

View File

@@ -46,10 +46,10 @@
},
"homepage": "https://github.com/airbnb/javascript",
"devDependencies": {
"babel-preset-airbnb": "^2.1.1",
"babel-preset-airbnb": "^2.2.3",
"babel-tape-runner": "^2.0.1",
"editorconfig-tools": "^0.1.1",
"eslint": "^3.14.0",
"eslint": "^3.15.0",
"eslint-find-rules": "^1.14.3",
"eslint-plugin-import": "^2.2.0",
"in-publish": "^2.0.0",
@@ -57,7 +57,7 @@
"tape": "^4.6.3"
},
"peerDependencies": {
"eslint": "^3.14.0",
"eslint": "^3.15.0",
"eslint-plugin-import": "^2.2.0"
},
"engines": {

View File

@@ -383,6 +383,11 @@ module.exports = {
}
}],
// Require or disallow spacing between template tags and their literals
// http://eslint.org/docs/rules/template-tag-spacing
// TODO: enable, semver-major
'template-tag-spacing': ['off', 'never'],
// require or disallow the Unicode Byte Order Mark
// http://eslint.org/docs/rules/unicode-bom
'unicode-bom': ['error', 'never'],