Build: .eslintrc -> .eslintrc.json

`.eslintrc` format is deprecated -
http://eslint.org/docs/user-guide/configuring#configuration-file-formats

Fixes gh-3248
Closes gh-3247
This commit is contained in:
Oleg Gaidarenko 2016-07-29 22:18:58 +03:00
parent 308e4b534b
commit 6acf4a7946
8 changed files with 7 additions and 7 deletions

View File

@ -1,5 +1,5 @@
{
"extends": "../src/.eslintrc",
"extends": "../src/.eslintrc.json",
"rules": {
// That is okay for the built version
"no-multiple-empty-lines": "off",

View File

@ -1,5 +1,5 @@
/* global Symbol */
// Defining this global in .eslintrc would create a danger of using the global
// Defining this global in .eslintrc.json would create a danger of using the global
// unguarded in another place, it seems safer to define global only for this module
define( [

View File

@ -2,6 +2,6 @@
"env": {
"es6": true
},
"extends" : "../../.eslintrc",
"extends" : "../../.eslintrc.json",
"root": true
}

View File

@ -1,4 +0,0 @@
{
"extends": "../../.eslintrc",
"root": true
}

View File

@ -0,0 +1,4 @@
{
"extends": "../../.eslintrc.json",
"root": true
}